Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Question about Adminstration Tools


kevincheng

Recommended Posts

Posted

I run the install program successfully in my local computer and I can login the catalog page, but I can't open the administration page at http://localhost/catalog/admin.

 

Since the following error occurs:

 

Fatal error: Cannot re-assign $this in D:\usr\www\catalog\admin\includes\classes\upload.php on line 31

 

Thank you for any help :rolleyes:

Posted
I run the install program successfully in my local computer and I can login the catalog page, but I can't open the administration page at http://localhost/catalog/admin.

 

Since the following error occurs:

 

Fatal error: Cannot re-assign $this in D:\usr\www\catalog\admin\includes\classes\upload.php on line 31

 

Thank you for any help    :rolleyes:

 

 

had the same problem ... did a google and its a problem with PHP5 (also comes up on a german osCommerce link).. you need to change

 

// self destruct

$this = null;

 

to

 

// self destruct

//$this = null;

unset($this);

Archived

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

×
×
  • Create New...