zizanio Posted July 22, 2005 Share Posted July 22, 2005 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 More sharing options...
zizanio Posted July 22, 2005 Author Share Posted July 22, 2005 any help??? :'( Link to comment Share on other sites More sharing options...
zizanio Posted July 22, 2005 Author Share Posted July 22, 2005 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.