有時候會出現織夢dedecms模塊管理空白的情況,原因為獲取織夢遠程的模塊失敗導致的。

解決辦法:
修改\dede\module_main.php,查找這一行代碼:
$modules = array_merge($modules,$modules_remote);
將這行代碼改為:
if($modules_remote) $modules = array_merge($modules,$modules_remote);
這樣,如果遠程的織夢模塊信息獲取失敗時,則只顯示本地的模塊列表,這樣就不會空白了。

















