2024年10月28日
使用 Notepad++ 全局查找无缩略图时,自动提取文章第一张图为缩略图的代码:
if (!$ico && preg_match('/<img\s+.*?src=\s?[\''|"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\''"].*?[\/]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {
$ico = $srcs[1];
}
注
2024年10月28日
打开根目录下的 tags.php 文件
找到 $tag = trim($_SERVER['QUERY_STRING']);
修改为 $tag = strtolower(trim($_SERVER['QUERY_STRING']));
2024年10月28日
修改 ExtLabelController.php 文件:
打开 apps/home/controller/ExtLabelController.php 文件,找到 test 方法,在其下面加入以下代码:
// 自动会话清理脚本
public function clean_session() {
check_dir(RUN_PATH . '/archive', true);
$data = json_decode(trim(substr(
2024年10月28日
执行SQL语句删除不带标题图片的信息:
delete from [表前缀]_ecms_news where titlepic = '';
delete from [表前缀]_ecms_news_index where id not in (select id from [表前缀]_ecms_news);
delete from [表前缀]_ecms_news_data_1 where id not in (select id from [表前缀]_ecms_news);
在后台&
2024年10月28日
打开 /include/channelunit.class.php
找到大概在35行的 $this->dsql = $GLOBALS['dsql'];
在其下方加入
echo $cid."-".$aid;
echo "<br />";
重新生成,查看提示的文档
删除有问题的文档
最后删除 /include/channelunit.class.php 中添加的代码