Shipping Module Not storing data ? April 29, 2007
Posted by admin in : Simple Issues , trackbackThe ”Shipping” module does not SAVE any changes I make to it. I have another shop with a few settings that I wanted to apply to the newly created shop, but it doesn’t work, because it doesn’t remember them at all.
Do you know where the problem can be located?!
SOLUTION :
open your catalog\admin\modules.php locate this code:
CODE
while (list($key, $value) = each($HTTP_POST_VARS[’configuration’])) {
replace it with:CODE
foreach($HTTP_POST_VARS[’configuration’] as $key => $value ) {
Simple !
Comments»
no comments yet - be the first?