osCommerce on Fedora/CentOS
(note: osCommerce version after 2.2RC1 does not need this)
need to put these settings in .htaccess:
php_value register_globals 1
php_value register_long_arrays 1
Fatal error: Cannot re-assign $this in …/includes/classes/upload.php on line …
Fix it:
replace:
$this = null;
to:
unset($this);