OSCommerce error – Fatal error: Cannot re-assign $this in … /upload.php on line..

OSCommerce Error – Fatal error: Cannot re-assign $this in … /upload.php on line ..

To fix this, edit the ‘upload.php’ file mentioned in the error message. Open the file and find the line that says:

// self destruct
$this = null;

Now edit it to:

// self destruct
// $this = null;
unset($this);

Basically comment out with // the $this = null; line and add the unset($this); line

Your admin panel should work fine.

Leave a Reply

You must be logged in to post a comment.