Palestine
|
Edited by khalid 2013-7-16 09:38
this message appears when you install any non-original or modified plugin ( such as any English plugin)
Sorry, You installed not genuine applications, can not continue to implement the Setup.
I found the solution:
i disabled discuz validator
first :
open : source\admincp\admincp_cloudaddons.php
search ::- cloudaddons_validator($_GET['key'].'.pack');
Copy the Code add double slash before it like this //
secound :
open : source\admincp\admincp_plugins.php
search :::
1-- cloudaddons_validator($_GET['dir'].'.plugin');
Copy the Code add double slash before it like this //
2-- cloudaddons_validator($dir.'.plugin');
Copy the Code add double slash before it like this //
3-- cloudaddons_validator($plugin['identifier'].'.plugin');
Copy the Code add double slash before it like this //
third
open
source\function\function_cloudaddons.php
search- cloudaddons_validator($plugin['identifier'].'.plugin');
Copy the Code add double slash before it like this //
Number four :-
open :
source\function\function_cloudaddons.php
search :- function cloudaddons_validator($addonid) {
- $array = cloudaddons_getmd5($addonid);
- if(cloudaddons_open('&mod=app&ac=validator&ver=2&addonid='.$addonid.($array !== false ? '&rid='.$array['RevisionID'].'&sn='.$array['SN'].'&rd='.$array['RevisionDateline'] : '')) === '0') {
- cpmsg('cloudaddons_genuine_message', '', 'error', array('addonid' => $addonid));
- }
- }
Copy the Code replace with- // function cloudaddons_validator($addonid) {
- // $array = cloudaddons_getmd5($addonid);
- // if(cloudaddons_open('&mod=app&ac=validator&ver=2&addonid='.$addonid.($array !== false ? '&rid='.$array['RevisionID'].'&sn='.$array['SN'].'&rd='.$array['RevisionDateline'] : '')) === '0') {
- // cpmsg('cloudaddons_genuine_message', '', 'error', array('addonid' => $addonid));
- // }
- //}
Copy the Code finally
open source\function\function_importdata.php
1-
search- if($validate) {
- cloudaddons_validator($dir.'.template');
- }
Copy the Code replace with- // if($validate) {
- // cloudaddons_validator($dir.'.template');
- // }
Copy the Code 2-
search- if($validate) {
- cloudaddons_validator($dir.'.template');
- }
Copy the Code replace with- // if($validate) {
- // cloudaddons_validator($dir.'.template');
- // }
Copy the Code |
|