NimoCodex
Member
- May 14, 2022
- 62
- 14
- 8
Go to include folder and open function.php file there will be a function like this
Just change it to this function
2nd step
go to main folder and open the index.php
remove these lines also on line 46
3rd step
go to include folder and open inc.php file and remove some lines and do some changes
line no : 35-36 (remove)
line no : 53 (change 1 to Null)
line no : 109 (remove)
line no : 134 (remove)
line no : 163 (remove)
line no : 208-212 (remove)
line no : 223 ( change exit() to return true )
Now every function will work fine . Hope this will help you all.
PHP:
public function iN_Sen($mycd, $mycdStatus,$base_url){
$check = preg_match('/(.*)-(.*)-(.*)-(.*)-(.*)/', $mycd);
if($check && $mycdStatus == '1'){
return true;
}else{
return header('Location:' . $base_url . base64_decode('YmVsZWdhbA=='));
}
}
Just change it to this function
PHP:
public function iN_Sen($mycd, $mycdStatus,$base_url){
return true;
}
2nd step
go to main folder and open the index.php
remove these lines also on line 46
PHP:
if(preg_match('~([[\w.-]+)~u', urldecode($request_uri), $match)){
$tag = $match[1];
$thePage = mysqli_real_escape_string($db, $match[1]);
if($thePage == base64_decode('YmVsZWdhbA==')){
include('sources/'.base64_decode('YmVsZWdhbA==').'.php');
exit();
}
}
3rd step
go to include folder and open inc.php file and remove some lines and do some changes
line no : 35-36 (remove)
line no : 53 (change 1 to Null)
line no : 109 (remove)
line no : 134 (remove)
line no : 163 (remove)
line no : 208-212 (remove)
line no : 223 ( change exit() to return true )
Now every function will work fine . Hope this will help you all.
Last edited: