Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kymation

♥Ambassador
  • Posts

    9,922
  • Joined

  • Last visited

  • Days Won

    125

kymation last won the day on May 31 2018

kymation had the most liked content!

About kymation

  • Birthday 09/25/1950

Profile Information

  • Real Name
    Jim Keebaugh
  • Gender
    Male
  • Location
    Aberdeen WA USA
  • Interests
    Just about everything.
  • Website

Recent Profile Visitors

147,734 profile views
  1. That looks like it should work. Test it first before you send email to your customers. Regards Jim
  2. The code in Phoenix has been updated, but the functionality is the same. The USPS module uses arrays to store the values you are having problems with. Stock osC does not handle arrays, so we need to make some changes to make that happen. The change to modules.php is a key part of that. In Phoenix, find this code: if (tep_not_null($action)) { switch ($action) { case 'save': foreach ($_POST['configuration'] as $key => $value) { and add this line immediately after that: if( is_array( $value ) ) $value = implode( ', ', $value ); That should fix the problems on the Admin side. You will need to uninstall and reinstall the module for this to work. I haven't tested this module with Phoenix, so there may be other changes needed. Regards Jim
  3. It was written for the 5.x series, but with as many of the 7.x requirements as I knew about at the time. Not all of them, obviously. Regards Jim
  4. It's going to be both. You will need to find all of the PHP issues caused by the move to 7.3, then upgrade from BS3 to BS4. The "%visible%" thing is a test for the presence of one of the hidden category mods. If it is found, the code will hide the categories as required, otherwise it will be ignored. That should not be an issue for you. Regards Jim
  5. I don't have the code available right now, so I can't say for certain, but I don't remember this being built-in. You could check the product count for each category, although this will be slow in a store with a lot of products. Regards Jim
  6. We give the USPS the From and To addresses and they calculate the cost based on that information. Exactly how they make those calculations are up to them. This i the way this interface has always worked. Regards Jim
  7. USPS shipping has always been zone based so this is not the cause of any problem you might be seeing. If one or more of the services are not working for you, turn on debugging in your Admin and look at the result. Regards Jim
  8. Glad to hear you found the problem. I've been having computer problems and couldn't look at the files until now. You saved me another dive into that code. Regards Jim
  9. Did you patch the filed or just upload the new files from the MVS distro? There may be file version differences between the MVS base and the Frozen version. Regards Jim
  10. You must have a vendor with id=1. Fix that and try again Regards Jim
  11. No live sites that I know of, although there are several people using this. The images I included are from a test site that is not yet live. Regards Jim
  12. It's Paypal, so nothing is ever easy. However, the current Paypal App for osCommerce is a lot easier to set up than any of the previous modules. How well it works depends on the version of osCommerce you are using. If you're up to 2.3.4.1, either stock or CE, it should work. Well, Direct Payment will work. Any older version of osC may or may not work, so you should upgrade first if you are running an older version. In that case I recommend using 2.3.4.1 CE. Regards Jim
  13. It works well with Direct Payment on a Paypal Pro account. It does not work with Paypal Express and probably never will. Regards Jim
  14. Check whether the files are in the correct location. The manual gives you the expected location for all of the files. Regards Jim
  15. Sorry, but I'm really busy right now. You could take a shot at it -- it shouldn't be that hard. Regards Jim
×
×
  • Create New...