tinkerbell46325 Posted November 4, 2008 Share Posted November 4, 2008 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' Quote Link to comment Share on other sites More sharing options...
satish Posted November 7, 2008 Share Posted November 7, 2008 You need to place the dhl code for furtehr comments. Satish Quote Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does. Link to comment Share on other sites More sharing options...
tinkerbell46325 Posted November 8, 2008 Author Share Posted November 8, 2008 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 . "'"); } Quote Link to comment Share on other sites More sharing options...
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.