Quote:
Originally Posted by farsgsm
ok thanks, ill check modifications
and u have same idea on errors below?
[13-Jun-2017 12:43:58 UTC] PHP Deprecated: Function split() is deprecated in /home/user/public_html/global.php(607) : eval()'d code on line 297
[13-Jun-2017 12:43:58 UTC] PHP Deprecated: Function split() is deprecated in /home/user/public_html/global.php(607) : eval()'d code on line 311
|
You need to find where the split() function is being used and replace those with the explode() function.
Quote:
Originally Posted by farsgsm
[13-Jun-2017 12:47:25 UTC] PHP Deprecated: Assigning the return value of new by reference is deprecated in /home/user/public_html/misc.php(100) : eval()'d code on line 834
|
In line 100 of misc.php, you will likely find "=&" being used...replace that with just "=".