首页 > 网站 > WEB开发 > 正文

dedecms首页powered by dedecms怎么去掉?

2024-04-27 15:07:00
字体:
来源:转载
供稿:网友

如果在网站模版templets中footer.htm没有找到有关版权的信息怎么办呢?

这个时候,可以打开include文件中的dedesql.classs.php文件,大概在580多行,找到

$arrs1 = array(0x63,0x66,0x67,0x5f,0x70,0x6f,0x77,0x65,0x72,0x62,0x79);

$arrs2 = array(0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,

0x77,0x77,0x77,0x2e,0x64,0x65,0x64,0x65,0x63,0x6d,0x73,0x2e,0x63,0x6f,0x6d,0x20,0x74,0x61,0x72,

0x67,0x65,0x74,0x3d,0x27,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x27,0x3e,0x50,0x6f,0x77,0x65,0x72,0x20,

0x62,0x79,0x20,0x44,0x65,0x64,0x65,0x43,0x6d,0x73,0x3c,0x2f,0x61,0x3e);

将上面的代码修改为

$arrs1 = array();

$arrs2 = array();

也就是去掉()中的字符。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表