Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

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!

Posted
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.

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Posted

^^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.

  • 1 month later...

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...