Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

everbme

Archived
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Real Name
    wesley

everbme's Achievements

  1. what code is that? and where should the code paste above? can you post the code out too please
  2. i followed other post and got the code back from usps: error is for Invalid XML Element cannot be empty according to the DTD/Schema. line= 0 pos= 1159 here is the full text i got: string(382) "<?xml version="1.0"?> <Error><Number>-2147219085</Number><Source>Rate_Respond.;SOLServerRates.RateV3_Respond</Source><Description>Invalid XML Element cannot be empty according to the DTD/Schema. line= 0 pos= 1159</Description><HelpFile></HelpFile><HelpContext>1000440</HelpContext></Error> " Shopping Cart Now in your cart 1 items Home New Products My Account Shopping cart Checkout Contacts anyone can help?
  3. hi everyone, hope someone can help me. here is my situation before i was using usps 1.0 , got it working, just the express mail always show, no matter what i select. then i downloaded the usps method 4.0, but couldn't get it to run. try to figure it how to get it up then the may 12 change came. so now i downloaded usps method 4.14 version. couple days ago i can't get into set up after install. the fatal error tcp function code came up . so i follow the instruction and have all extra codes copy and paste into the files. now i able to setup and enter my user ID and all the goodies. problem i have now is: after i place order the error message "An error occured with the USPS shipping calculations. If you prefer to use USPS as your shipping method, please contact the store owner. " what did i miss in steps? what things can i do i have my account in production, store info and zip code entered, did the update on SQL, have weights on the item i purchase. please help me if you know thanks in advance
  4. i have similar problem like yours before, then i go check and follow the instruction, and use beyond compare to compare the files, and find if (tep_not_null($action)) { switch ($action) { case 'save': while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { *********************************************** INSERT THE FOLLOWING CODE AFTER THE ABOVE LINE: *********************************************** if( is_array( $value ) ){ $value = implode( ", ", $value); $value = ereg_replace (", --none--", "", $value); } and i replaced. and also did this Find This code somewhere around line 767: ***************************************** //// // Alias function for module configuration keys function tep_mod_select_option($select_array, $key_name, $key_value) { reset($select_array); while (list($key, $value) = each($select_array)) { if (is_int($key)) $key = $value; $string .= '<br><input type="radio" name="configuration[' . $key_name . ']" value="' . $key . '"'; if ($key_value == $key) $string .= ' CHECKED'; $string .= '> ' . $value; } return $string; } *********************************************** INSERT THE FOLLOWING CODE AFTER THE ABOVE LINE: *********************************************** // USPS Methods 3.0 // Alias function for Store configuration values in the Administration Tool function tep_cfg_select_multioption($select_array, $key_value, $key = '') { for ($i=0; $i<sizeof($select_array); $i++) { $name = (($key) ? 'configuration[' . $key . '][]' : 'configuration_value'); $string .= '<br><input type="checkbox" name="' . $name . '" value="' . $select_array[$i] . '"'; $key_values = explode( ", ", $key_value); if ( in_array($select_array[$i], $key_values) ) $string .= ' CHECKED'; $string .= '> ' . $select_array[$i]; } $string .= '<input type="hidden" name="' . $name . '" value="--none--">'; return $string; } **************************** the error message went away and i able to put in setting and my id. but now when i try test it with a real order i get error message from calculation, and say contact seller. at least i got little bit closer to get it working.
  5. thanks for contributing, but if you going to share and help other, why use a link that require people to login or register. Are you trying to advertise your place?
  6. ok i try the setting given by minkoilman, finally it work for the sandbox site, i have to try it on the live box and try, will keep update when i have it all configuated out.
  7. wow thanks always support contribution
×
×
  • Create New...