Hello,
We are using UPS and USPS shipping methods, both appear to be working though the calculated amounts appear to be wrong (too high).
Can you use it with the "Group package" option set to YES ?
We've experimented with a single product, various dimensions and weights and the shipping costs for both UPS and USPS are too high.
Can you show me how did you configured your shipping methods through some screenshots ?
For UPS, you'll just have to add that line on the ups.php file :
echo '<!-- '. $xml. ' -->'."\r\n"; // THIS LINE IS FOR DEBUG PURPOSES ONLY-IT WILL SHOW IN HTML COMMENTS
just before these lines :
$session = curl_init("https://www.ups.com/ups.app/xml/Rate");
curl_setopt($session, CURLOPT_HEADER, 1);
curl_setopt($session,CURLOPT_POST,1);
curl_setopt($session,CURLOPT_TIMEOUT, 30);
curl_setopt($session,CURLOPT_RETURNTRANSFER,1);
curl_setopt ($session, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt ($session, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($session,CURLOPT_POSTFIELDS,$xml);
so that you'll see what you are sending to UPS via HTML comments through the shipping step of your checkout workflow.
As it seems so many have issues with various shipping methods, would it be possible to add a "debug" or "verbose" option in configuration to somehow gather and display the data going to and return from shipping services?
Sure I'll add it on the todo list.