dedecms 后台运行很慢
发布时间:2015-04-16 点击数:1440
找到路径..\dede\templets下的index_body.htm用DW打开编辑以下的代码
function showMore()
{
$("#allInfo").toggle();
$("#allInfoTD").toggle();
}
$(function()
{
$.get("index_testenv.php",function(data)
{
if(data !== '')
{
$("#__testEvn").html(data);
}
})
})
变成
/*
function showMore()
{
$("#allInfo").toggle();
$("#allInfoTD").toggle();
}
$(function()
{
$.get("index_testenv.php",function(data)
{
if(data !== '')
{
$("#__testEvn").html(data);
}
})
})
*/
即可解决DEDE后台操作缓慢的问题