osCommerce Payment Module Configuration Not Saving + Solution
Jan 15, 2010 · 1 minute readCategory: oscommerce
This is post is now quite old and the the information it contains may be out of date or innacurate.
If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub
in admin/modules.php
find:
while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {
and replace it with
//while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {
foreach ($HTTP_POST_VARS['configuration'] as $key => $value){