Fatal error: Cannot re-assign $this in /home/…../admin/includes/classes/upload.php on line 31
Posted by admin in osCommerce, tips
I logged in to osCommerce shop administration and I got this error:
Fatal error: Cannot re-assign $this in /home/…../admin/includes/classes/upload.php on line 31
Few days ago the shop was transferet to a server with PHP5 installed. So the problem needs to be fiksed and here is how:
Open file /admin/includes/classes/upload.php and obviously go to line 31 or find:
$this = null;
And replace it with:
unset($this);
The administration should work perfectly now.


