admin
Guest
|
 |
« on: June 24, 2008, 01:21: PM » |
|
Fatal error: Cannot redeclare do_magic_quotes_gpc() (previously declared in /home2/damefata/public_html/catalog/admin/includes/functions/compatibility.php:18) in /home2/damefata/public_html/catalog/admin/includes/functions/compatibility.php on line 30
This error is most likely caused by a file being called for more that once.
Check your mod files and see if there is any where in which a file is being required more than once.
In the case of the Product Inventory Editor Mod v 1.2 the product_list.php was being called at the beginning of the file. What was actually being called was the 'include/languages/product_list.php which held the column heading titles.
We deleted the require('includes/languages/product_list.php'); in line 14 and manually enter the column headings starting in line 84 replacing <?php echo TABLE_HEADING_PART_NO; ?> with Part #
Once this was done everything worked fine.
BTW this was for a site using STD
|