智慧建站平台,千套网站模板,免费随心选!

您现在的位置: 首页>>网站教程

织梦CMS模块管理空白怎么办

来源: 发布时间:2019-12-03热度:83 ℃
有时候会出现模块管理空白的情况,原因为获取织梦远程的模块失败导致的。解决办法:修改dedemodule_main.php,注释掉第91和95行:if($action==''){ $ty···

织梦CMS模块管理空白怎么办

有时候会出现模块管理空白的情况,原因为获取织梦远程的模块失败导致的。

3842f9d1dcca90493a8ea859b13c5a0.png

解决办法:

修改\dede\module_main.php,注释掉第91和95行:

if($action=='')
{
    $types = array('soft'=>'模块','templets'=>'模板','plus'=>'小插件','patch'=>'补丁');
    $dm = new DedeModule($mdir);
    if(empty($moduletype)) $moduletype = '';
//$modules_remote = $dm->GetModuleUrlList($moduletype,$mdurl);
$modules = array();
$modules = $dm->GetModuleList($moduletype);
is_array($modules) || $modules = array();
//$modules = array_merge($modules,$modules_remote);
    require_once(dirname(__FILE__)."/templets/module_main.htm");
    $dm->Clear();
    exit();
}
登录后复制

本文地址:http://ezhuoer.com