muban大师 发表于 2020-6-9 11:20:03

DedeCMS小说连载模块内容页空白是怎么回事?怎么解决?

dedecms是一款不错的建站程序,尤其文章、图集等模型,在dedecms后台有一个小说管理模块,可以创建小说或者漫画。在使用过程中,有的时候会出现小说连载模块内容页空白的情况,DedeCMS小说连载模块内容页空白是怎么回事呢?怎么解决?
       
        打开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');
       
        以上是DedeCMS小说连载模块内容页空白相关的解决方案,希望对大家有所帮助
页: [1]
查看完整版本: DedeCMS小说连载模块内容页空白是怎么回事?怎么解决?