dedecms是一款不错的建站程序,尤其文章、图集等模型,在dedecms后台有一个小说管理模块,可以创建小说或者漫画。在使用过程中,有的时候会出现小说连载模块内容页空白的情况,D
打开story.php文件找到
1
require_once(
dirname
(__FILE__).
'./include/story.view.class.php'
);
将那个点去掉改后就是下面这样 1
require_once(
dirname
(__FILE__).
'/include/story.view.class.php'
);
同样的小说频道的分类打不开也是一样 打开list.php文件找到
1
require_once(
dirname
(__FILE__).
'./include/story.view.class.php'
);
修改为 1
require_once(
dirname
(__FILE__).
'/include/story.view.class.php'
);
以上是DedeCMS小说连载模块内容页空白相关的解决方案,希望对大家有所帮助