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

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

作者: 73e00b4c58b9 | 来源:发表于2020-05-07 10:58 被阅读0次

     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');

    相关文章

      网友评论

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

          本文链接:https://www.haomeiwen.com/subject/dcpoghtx.html