When I activate UPS XML, the page loops and does not continue on to payment type on checkout.
This is a discussion on Ups xml within the UPS XML forums, part of the Shipping Modules category; When I activate UPS XML, the page loops and does not continue on to payment type on checkout....
When I activate UPS XML, the page loops and does not continue on to payment type on checkout.
Did you enter in your UPS account information? Did you verify that your UPS account is active? What version of osCmax?
Michael Sasek
osCMax Developer
osCmax Installation Service - Have our professionals install osCmax on your server - same day service!
osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5
Stay Up To Date with everything osCMax:
Free osCmax Newsletters - Security notices, New Releases, osCMax News
osCmax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Could be a cURL error. Verify the cURL is compiled into php with SSL support (contact the host if you aren't sure how to do that). Ask the host if you need to use a proxy with curl. Some hosts have different requirements for using it.
Michael Sasek
osCMax Developer
osCmax Installation Service - Have our professionals install osCmax on your server - same day service!
osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5
Stay Up To Date with everything osCMax:
Free osCmax Newsletters - Security notices, New Releases, osCMax News
osCmax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
You reference cURL with SSL support. Does this mean I have to hvae an SSL Cert?
No, it means your php needs to be compiled with curl+ssl.
Michael Sasek
osCMax Developer
osCmax Installation Service - Have our professionals install osCmax on your server - same day service!
osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5
Stay Up To Date with everything osCMax:
Free osCmax Newsletters - Security notices, New Releases, osCMax News
osCmax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Yes, my host has cURL+SSL compiled into PHP and does not require a proxy server.
My host is GoDaddy if that makes a difference.
Last edited by BackUpZone; 01-04-2011 at 08:16 AM.
Yes godaddy does require you set a curl proxy.
http://groups.google.com/group/googl...07115f9205a84e
Michael Sasek
osCMax Developer
osCmax Installation Service - Have our professionals install osCmax on your server - same day service!
osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5
Stay Up To Date with everything osCMax:
Free osCmax Newsletters - Security notices, New Releases, osCMax News
osCmax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Your link did not work. Who is correct? Are proxy servers required for outbound connections from my shared hosting account? - Search the Go Daddy Help Center
Your link didn't work. Here is my code from the upsxml.php file->
else { // default behavior: cURL is assumed to be compiled in PHP
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
// uncomment the next line if you get curl error 60: error setting certificate verify locations
// curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
// uncommenting the next line is most likely not necessary in case of error 60
// curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlRequest);
curl_setopt($ch, CURLOPT_TIMEOUT, (int)$timeout);
What do I have to change in this code?
Bookmarks