After the DEDECMS V5.7 version is updated, the Dreamweaver copyright information "powered by dedecms" will appear at the bottom of the front page. Many people don't know how to remove it (it is not recommended that you remove it. After all, the program was developed by someone else and you use it for free), because this code does not exist in the HTM template. (Recommended study: 梦Weavercms)
Now tell you how to remove the powered by dedecms copyright information at the bottom of Dreamweaver:
in include/dedesql.class Find line 588 in the .php file:
$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);
and change it to:
$arrs1 = array(); $arrs2 = array();
Save the file and upload it. If you feel that it really affects the appearance or are afraid of exporting the weight, it is recommended to remove it and leave an official link on the homepage of the page or leave a message powered by dedecms at the bottom of the page without a link. Please respect the copyright!
The above is the detailed content of How to remove the bottom of DreamWeaver powered by dedecms. For more information, please follow other related articles on the PHP Chinese website!