解决DedeCMS小说连载模块内容页空白问题

2022-08-19 378

dedecms是一款不错的建站程序,尤其文章、图集等模型,最近需要上线小说频道,就把dede的小说连载用上了,结果出现了小说连载模块内容页空白的问题,经过研究终于解决了,现在把解决方法投稿在火网,希望对大家有所帮助!
打开story.php文件找到
require_once(dirname(__FILE__).'./include/story.view.class.php');
将那个点去掉改后就是下面这样
require_once(dirname(__FILE__).'/include/story.view.class.php');
同样的小说频道的分类打不开也是一样
打开list.php文件找到
require_once(dirname(__FILE__).'./include/story.view.class.php');
修改为
require_once(dirname(__FILE__).'/include/story.view.class.php');
问题解决,还有问题的朋友请在评论中留言。