Tag Archives: 采集
SupeSite 7.5 (1126)采集后,后台(资讯管理)看不见采集来的文章 修改办法
SupeSite为 SupeSite 7.5正式版(1126) 比照数据库中的记录,发现采集后的文章没有 “type”字段内容。 于是打开 “admin” 目录下的 “admin_robots.php” 找到(大概在1151行) //获取资讯分类 $clistarr = getcategory(‘news’); $allcatarr = getcategory(); 然后修改为 //获取资讯分类 $clistarr = getcategory(‘news’); $allcatarr = getcategory(‘news’); 即可,但是已经采集回来的内容并不会显示出来,需要修改数据库中的记录 把“supe_spaceitems”中相应条目的“type”字段修改为“news”即可。 可以使用 下面的 SQL 语句修改 UPDATE `www`.`supe_spaceitems` SET `type` = ‘news’ WHERE `supe_spaceitems`.`itemid` =123 … Continue reading