jferezy Posted June 15, 2007 Share Posted June 15, 2007 I am having a major problem updating the admin area as far as anything. Anything I update gets a zero value. For example - when I update a status of an order - it pus a "0" in the order_status - therefore removing the customer from the "orders" configuration. Another example: I added a category - it added a category with no data for it - a black folder shows up. I can not delete the categories either. The main website works no problems - it is only the admin. I even restored the full admin directory - still the same problem. It seems like the POST/GET variables are not following through. Any help would be greatly appreciated!!! Jason Link to comment Share on other sites More sharing options...
bxmas13 Posted June 16, 2007 Share Posted June 16, 2007 I had the same problem, the modification below fixed it. This is from the user enigma1. So all credit goes to him/her. open your catalog\admin\modules.php locate this code: while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { change it to: foreach($HTTP_POST_VARS['configuration'] as $key => $value ) { Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.