ignaciobernal Posted October 14, 2007 Share Posted October 14, 2007 Fatal error: Cannot re-assign $this in /home/sendamar/public_html/shop/admin/includes/classes/upload.php on line 31 thats what i get any clue? Link to comment Share on other sites More sharing options...
Jack_mcs Posted October 14, 2007 Share Posted October 14, 2007 It's a known problem. Here is the fix from the oscommerce patches: Lines 27-34 in catalog/admin/includes/classes/upload.php must be changed from: if ( ($this->parse() == true) && ($this->save() == true) ) { return true; } else { // self destruct $this = null; return false; } to: if ( ($this->parse() == true) && ($this->save() == true) ) { return true; } else { return false; } Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.