Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

I cant access /admin/index.php


zizanio

Recommended Posts

The error goes like this

 

"Fatal error: Cannot re-assign $this in /home/badc77/public_html/catalog/admin/includes/classes/upload.php on line 31"

 

so i cant get into the admin panel :(

Link to comment
Share on other sites

I found the solution anyway,

 

The problem is on php5 as it has problems with repeating variables and the code into upload.php has the following

 

// self destruct
// $this = null;

 

the $this variable is used before that line so

the trick is to add the following

 

 

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

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...