Fatal error: Cannot re-assign $this in \home\xxxx\www\admin\includes\classes\upload.php on line 31
Usually You getting below erorr on PHP 5.xx
Fatal error: Cannot re-assign $this in \home\xxxx\www\admin\includes\classes\upload.php on line 31
How to fix?
Open file: admin\includes\classes\upload.php
on line 31
find:
$this = null;
replace with:
unset($this);
Done!
Posted by admin
26.Feb.08
You can leave a response, or trackback from your own site.

















