Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

DHL error'


tinkerbell46325

Recommended Posts

Hello Everyone' Today is an Important Day Please Vote!

 

i need help ' as i think this is an error on my end ' Oscommerce not dhl' but

i get this error' An error occured with the DHL/Airborne shipping calculations. If you prefer to use DHL/Airborne as your shipping method, please contact the store owner,"

 

I need to know how to view the XML request that is being sent to the DHL server' so i can send it back to 'em

anybody know how to do this? I appreciate some help ! Someone might have this problem b4 :-)

 

I Think it means that the module is probably unable to connect to the ShipIT server

I have checked my Admin to verify this settings are correct.

(Using the DHL/Airborne ShipIT XML 2.1 API)

Also ther i notice when i select any of the Shipping Methods below' it changes to "Shipping Methods Array"

 

Available Methods:

G - Ground

S - Second Day Service

N - Next Afternoon

 

then on checkout process always selects the flat rate' shipping as default and there's no button for dhl'

Link to comment
Share on other sites

You need to place the dhl code for furtehr comments.

 

Satish

 

Thank You Satish ' It works now!

I Change this in admin/modules.php

 switch ($action) {
     case 'save':
    while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {
         tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'");

 

 

To this

 switch ($action) {
     case 'save':
    while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {
    if( is_array( $value ) ) $value = implode( ", ", $value);
         tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'");
       }

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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