jonlai9 Posted September 29, 2006 Posted September 29, 2006 I have Paypal IPN and CCGV installed, but it seems like I can't get any more Order Total modules to work properly anymore! None of the new contribs that I try to install appear in checkout_confirmation.php. I'm espeically trying to install SHIPPING INSURANCE 1.0 PLEASE HELP! Quote
bkellum Posted September 29, 2006 Posted September 29, 2006 I have Paypal IPN and CCGV installed, but it seems like I can't get any more Order Total modules to work properly anymore! None of the new contribs that I try to install appear in checkout_confirmation.php. I'm espeically trying to install SHIPPING INSURANCE 1.0 PLEASE HELP! Have you recently upgraded your osCommerce to 060817? It appears this is a general problem with the compatibility.php file in the 060817 update. Here is a work around: Add the following code reset($ar); at the end of the do_magic_quotes_gpc routine. It will end up looking like this: function do_magic_quotes_gpc(&$ar) { if (!is_array($ar)) return false; while (list($key, $value) = each($ar)) { if (is_array($ar[$key])) { do_magic_quotes_gpc($ar[$key]); } else { $ar[$key] = addslashes($value); } } reset($ar); } Hope this helped you out. Quote Bill Kellum Sounds Good Productions STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE
jonlai9 Posted September 30, 2006 Author Posted September 30, 2006 ^^No, I am running 051113, should I be upgrading? I'm just worried that it might've been a conflict with CCGV or Paypal IPN that is making other order total modules that I install afterwards to be not working. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.