POST TIME:2017-11-13 00:23
織夢 v5.7 SP1版本,發現很多問題,其中一個比較嚴重的是,架到服務器上的dede網站后臺打開菜單選項卡得不能動,等半天顯示505服務器錯誤,這個真讓人糾結,在本地調試明明好好的,放在服務器為什么不行了呢?檢查了下源文件,發現是織夢安全提示執行緩慢造成的,下面是解決方案:
打開DEDECMS后臺/templets/的index_body.htm文件,找到對應代碼,將其注釋掉,保存上傳覆蓋,刷新下后臺,OK,解決了!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<scripttype= "text/javascript" > function showMore() { $( "#allInfo" ).toggle(); $( "#allInfoTD" ).toggle(); } /* $(function() {
$.get("index_testenv.php",function(data)
{ if(data!=='') { $("#__testEvn").html(data); }
});
$.get("index_body.php?dopost=get_seo",function(data)
{ if(data!=='') { $("#SEOInfo").html(data); }
}); });*/ </script> |