Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

shopgrl

Members
  • Posts

    70
  • Joined

  • Last visited

Profile Information

  • Real Name
    Jeannie
  • Gender
    Female

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

shopgrl's Achievements

  1. My shopping cart is not including the shipping charges at the end of checkout. When you first begin the checkout process the shipping charges are shown (usps module), when you continue, the next page leaves off the billing address, just showing a little arrow, you add the billing address, but should not have to since it is usually shows the shipping address that you can change to billing if it should be different, then you continue checkout, but at the end the shipping charge is left off. If you go back and add a product then the cart asks you to pick a shipping option, then you can continue with the checkout and now the shipping is included. Any ideas on why this is happening. My shop is using osCmax.
  2. Will this current module as you have posted work on Phoenix and oscMax?
  3. Hi OZ. Thank you. Module is now working on Jeannie's Cottage. Trying to get it to work with another little site called Beanies n Buddies. Shows international rates via usps module but won't show USA rates. My IT guy is working on it, but your upload did work. Many thanks.
  4. My site (www.jeanniescottage.com) still produces a shipping option of USPS Priority Mail or Express Mail, but has stopped offering the First Class option. So far the tweaks to the module have not been successful.
  5. My IT guy says he did uninstall and reinstall the module. This is the version he is using: /* USPS Rate V4 Intl Rate V2 $Mod: Changed from Parcel Post to Standard Post 20130129 Kymation $ $Mod: USPS API changes 20130729 Kymation v 1.3 $ $Mod: USPS API changes 20140310 a.forever $ $Mod: USPS API changes 20140802 a.forever $ $Mod: USPS API changes 20140823 Kymation v 1.4 $ $Mod: USPS API changes 20140907 Kymation & a.forever v 1.5 $ Copyright (c) 2012 osCbyJetta Released under the GNU General Public License */ Would you like me to upload the usps.php file he is using?
  6. My website uses the USPS Shipping Module and every time USPS makes a change, the shipping module works, but leaves off some categories. Now it will not show First Class or Ground. I know about the Global Advantage change and my IT guy has implemented the changes in the code, but the module still is only showing USPS Priority and Priority Express. Is there a way to get the correct coding for that module that actually works? I just need to have the new Global Advantage category to show.
  7. My website uses osCmax. My usps.php file has this: if( preg_match( '#First\-Class#', $request_type ) && $this->usps_weight < 16/16 ) { $service = 'First Class'; but customers still are not getting quotes for First Class when their cart shows weights of from 14 to 16 ounces. It is showing only Priority Mail. Does something else need to be changed? Shouldn't they be getting quotes for First Class Mail? Otherwise everything works fine.
  8. OK, mine is now working. Just three changes needed for my module: From this: elseif ($request_type == 'Parcel PostRM') $service = 'PARCEL'; To this: elseif ($request_type == 'Standard PostRM') $service = 'PARCEL'; Then go to this paragraph: tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Shipping Methods (Domestic and International)', 'MODULE_SHIPPING_USPS_TYPES', '0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00', '<b><u>Checkbox:</u></b> Select the services to be offered<br><b><u>Minimum Weight (lbs)</u></b>first input field<br><b><u>Maximum Weight (lbs):</u></b>second input field<br><br>USPS returns methods based on cart weights. These settings will allow further control (particularly helpful for flat rate methods) but will not override USPS limits', '6', '0', 'tep_cfg_usps_services(array(\'First-Class MailRM Large Envelope\', \'First-Class MailRM Parcel\', \'Media MailRM\', \'Parcel PostRM\', \'Priority MailRM\', \'Priority MailRM Flat Rate Envelope\', \'Priority MailRM Legal Flat Rate Envelope\', \'Priority MailRM Padded Flat Rate Envelope\', \'Priority MailRM Small Flat Rate Box\', \'Priority MailRM Medium Flat Rate Box\', \'Priority MailRM Large Flat Rate Box\', \'Priority MailRM Regional Rate Box A\', \'Priority MailRM Regional Rate Box B\', \'Priority MailRM Regional Rate Box C\', \'Express MailRM\', \'Express MailRM Flat Rate Envelope\', \'Express MailRM Legal Flat Rate Envelope\', \'Express MailRM Flat Rate Boxes\', \'First-Class MailRM International Large Envelope**\', \'First-Class MailRM International Parcel**\', \'Priority MailRM International\', \'Priority MailRM International Flat Rate Envelope**\', \'Priority MailRM International Small Flat Rate Box\', \'Priority MailRM International Medium Flat Rate Box\', \'Priority MailRM International Large Flat Rate Box\', \'Express MailRM International\', \'Express MailRM International Flat Rate Envelope\', \'Express MailRM International Flat Rate Boxes\', \'USPS GXGTM Envelopes**\', \'Global Express GuaranteedRM (GXG)**\'), ', now())"); Change this: \'Parcel PostRM\', To this: \'Standard PostRM\', And this: \'First-Class MailRM International Parcel**\', To this: \'First-Class Package International ServiceTM**\', That's it. It is now showing Parcel Post rates as Standard Post rates and International Package rates, which are quite a bit higher. Thanks everyone for all your input. Shopgrl Quote MultiQuote
  9. OK, mine is now working. Just three changes needed for my module: From this: elseif ($request_type == 'Parcel PostRM') $service = 'PARCEL'; To this: elseif ($request_type == 'Standard PostRM') $service = 'PARCEL'; Then go to this paragraph: tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Shipping Methods (Domestic and International)', 'MODULE_SHIPPING_USPS_TYPES', '0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00', '<b><u>Checkbox:</u></b> Select the services to be offered<br><b><u>Minimum Weight (lbs)</u></b>first input field<br><b><u>Maximum Weight (lbs):</u></b>second input field<br><br>USPS returns methods based on cart weights. These settings will allow further control (particularly helpful for flat rate methods) but will not override USPS limits', '6', '0', 'tep_cfg_usps_services(array(\'First-Class MailRM Large Envelope\', \'First-Class MailRM Parcel\', \'Media MailRM\', \'Parcel PostRM\', \'Priority MailRM\', \'Priority MailRM Flat Rate Envelope\', \'Priority MailRM Legal Flat Rate Envelope\', \'Priority MailRM Padded Flat Rate Envelope\', \'Priority MailRM Small Flat Rate Box\', \'Priority MailRM Medium Flat Rate Box\', \'Priority MailRM Large Flat Rate Box\', \'Priority MailRM Regional Rate Box A\', \'Priority MailRM Regional Rate Box B\', \'Priority MailRM Regional Rate Box C\', \'Express MailRM\', \'Express MailRM Flat Rate Envelope\', \'Express MailRM Legal Flat Rate Envelope\', \'Express MailRM Flat Rate Boxes\', \'First-Class MailRM International Large Envelope**\', \'First-Class MailRM International Parcel**\', \'Priority MailRM International\', \'Priority MailRM International Flat Rate Envelope**\', \'Priority MailRM International Small Flat Rate Box\', \'Priority MailRM International Medium Flat Rate Box\', \'Priority MailRM International Large Flat Rate Box\', \'Express MailRM International\', \'Express MailRM International Flat Rate Envelope\', \'Express MailRM International Flat Rate Boxes\', \'USPS GXGTM Envelopes**\', \'Global Express GuaranteedRM (GXG)**\'), ', now())"); Change this: \'Parcel PostRM\', To this: \'Standard PostRM\', And this: \'First-Class MailRM International Parcel**\', To this: \'First-Class Package International ServiceTM**\', That's it. It is now showing Parcel Post rates as Standard Post rates and International Package rates, which are quite a bit higher. Thanks everyone for all your input. Shopgrl
  10. Yes, negative..., it appears we are using the same module. Mine works except for Parcel Post. Do you keep making changes, then uninstalling and reinstalling again and again and still no luck? What a pain! Has anyone had any luck fixing this in the module we are using? At least my shopping cart is still working. Hope someone comes up with a fix soon. Shopgrl
  11. My usps.php module shows this: elseif ($request_type == 'Media MailRM') $service = 'MEDIA'; elseif ($request_type == 'Parcel PostRM') $service = 'PARCEL'; elseif (preg_match('#Priority MailRM#', $request_type)) What should be changed here? Should it be this: elseif ($request_type == 'Standard PostRM') $service = 'PARCEL'; or this: elseif ($request_type == 'Standard PostRM') $service = 'STANDARD'; then farther down on the page I have this: tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Shipping Methods (Domestic and International)', 'MODULE_SHIPPING_USPS_TYPES', '0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00', '<b><u>Checkbox:</u></b> Select the services to be offered<br><b><u>Minimum Weight (lbs)</u></b>first input field<br><b><u>Maximum Weight (lbs):</u></b>second input field<br><br>USPS returns methods based on cart weights. These settings will allow further control (particularly helpful for flat rate methods) but will not override USPS limits', '6', '0', 'tep_cfg_usps_services(array(\'First-Class MailRM Large Envelope\', \'First-Class MailRM Parcel\', \'Media MailRM\', \'Parcel PostRM\', \'Priority MailRM\', \'Priority MailRM Flat Rate Envelope\', \'Priority MailRM Legal Flat Rate Envelope\', \'Priority MailRM Padded Flat Rate Envelope\', \'Priority MailRM Small Flat Rate Box\', \'Priority MailRM Medium Flat Rate Box\', \'Priority MailRM Large Flat Rate Box\', \'Priority MailRM Regional Rate Box A\', \'Priority MailRM Regional Rate Box B\', \'Priority MailRM Regional Rate Box C\', \'Express MailRM\', \'Express MailRM Flat Rate Envelope\', \'Express MailRM Legal Flat Rate Envelope\', \'Express MailRM Flat Rate Boxes\', \'First-Class MailRM International Large Envelope**\', \'First-Class MailRM International Parcel**\', \'Priority MailRM International\', \'Priority MailRM International Flat Rate Envelope**\', \'Priority MailRM International Small Flat Rate Box\', \'Priority MailRM International Medium Flat Rate Box\', \'Priority MailRM International Large Flat Rate Box\', \'Express MailRM International\', \'Express MailRM International Flat Rate Envelope\', \'Express MailRM International Flat Rate Boxes\', \'USPS GXGTM Envelopes**\', \'Global Express GuaranteedRM (GXG)**\'), ', now())"); assume this \'Parcel PostRM\', should be this \'Standard PostRM\', Is that correct? Then I need to uninstall the module and reinstall it to get the changes to work? Shopgrl
  12. Just thought I would toss this in. USPS is changing their rates on January 27th. Parcel Post is being changed to Standard Post. Won't this mess up our coding for oscommerce shipping modules? Is anyone working on this? Shopgrl
  13. Doesn't this mean the coding in our shipping modules needs to be adjusted? USPS is changing their terminology. Instead of Parcel Post they are using Standard Post. What pages will need to be adjusted? How about usps.php? Others? I did not set up my site and my developer has flown the coop. Shopgrl
  14. Hi Jack, Since I seem to be having so many problems with running a cron, would installing the Google XML Sitemap Admin Module for osCommerce 2.3.1 be a good option? I added the two files as instructed, but when I go into admin there is nothing in the Dashboard about xml files. I only see these listed: Customers, Orders, Total customers Chart (last 30 days) and Total Revenue Chart (last 30 days.) What am I missing?
×
×
  • Create New...