In the crazy era of discuz, are you still struggling for a template for a few nights? That's wrong, in today's efficient and developed Internet. Anything can be found, not to mention a template. However, usually other people's things are copyrighted or something. What should I do? When we are using a Discuz x2.5 template or plugin purchased by others, the system will prompt us: Sorry, you are not installing a genuine application, and the installer cannot continue to run. This is because this template and plugin are genuine, and the discuz community has added version detection of plugins after updating to 2.0 or above. The answer is simple. Find it under the root directory of your website
Method 1:
/source/function/function_cloudaddons.php这个文件,然后打开,再找到cloudaddons_validator方法,删去或者注释掉cpmsg('cloudaddons_genuine_message', '', 'error', array('addonid' => $addonid));这句代码,这样就解决问题了。 The annotation method is as follows: function cloudaddons_validator($addonid) { $array = cloudaddons_getmd5($addonid); if(cloudaddons_open('&mod=app&ac=validator&addonid='.$addonid.( $array !== false ? '&rid='.$array['RevisionID'].' &sn='.$array['SN'].' &rd='.$array['RevisionDateline'] : '')) === '0') {
}
}
Method 2:
Templates cannot be installed, just modify your template folder name to install it, for example, the original template is itsvse, now you can modify it arbitrarily, such as changing it to itsvse, and then find ./template/itsvse in the template installation file You change the itsvse in this to the new name itsvse you modified just now, so that's it, and you need to modify the template name link, you can use Dreamweaver to modify it in batches. |