Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Smoky Barnable

♥Ambassador
  • Posts

    183
  • Joined

  • Last visited

  • Days Won

    12

Smoky Barnable last won the day on September 26 2023

Smoky Barnable had the most liked content!

Profile Information

  • Real Name
    Eric

Recent Profile Visitors

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

Smoky Barnable's Achievements

  1. Yes, as I previously mentioned in this thread creating a daily cron job and having the file fetched daily has been working great for me. No need to upload via FTP.
  2. Stripe or Square. I've removed PayPal last year because of their shady business practices and increased transaction fees. Not to mention zero seller protection and customers addresses that are not verified. Their "holding funds" policy is equivalent to giving them interest free loans. Don't look back.
  3. For those who still want to display first class package rates, the following changes are needed as of today. Change: if( preg_match( '#First\-Class#', $request_type ) && $this->usps_weight < 16/16 ) to: if( preg_match( '#USPS Ground AdvantageTM#', $request_type ) && $this->usps_weight < 16/16 ) Change: \'First-ClassTM Package Service\', to: \'USPS Ground AdvantageTM\', And update in configuration_key MODULE_SHIPPING_USPS_TYPES in the configuration table in the database as well.
  4. USPS will be changing First class package and ground services to USPS Ground Advantage July 9th. I'm sure some tweaks to the code will be needed to display rates properly.
  5. I have the cron working now. The problem was the chdir('../') in googlefeeder.php which moves up one directory wasn't functioning as intended in the shell environment. I replaced with chdir('public_html') in my cron file. Since I use SEO urls the tep_href_link was using the function in the admin directory, which is why the urls were not correct.
  6. Currently working fine in the browser but the cron job results in "Failed to open stream: No such file or directory". The only way I can get the cron job working is by changing chdir('../'); to chdir('public_html/admin'); in googlefeeder.php. This breaks the script however and the product urls are not accurate. Tried changing directory in the cron command itself but no luck. cd /home/xxxx/public_html/admin/ && /usr/local/bin/php googlefeedercron.php
  7. https://support.google.com/merchants/answer/13033917
  8. In the meantime, since Google will be deleting all FTP upload accounts this September, wouldn't it be possible to use scheduled fetches instead? https://support.google.com/merchants/answer/1219255 Just setup a cron job that doesn't upload via FTP and have Google fetch the file from the feeds folder at the frequency of your choosing. Seems like it should work fine but maybe I'm missing something.
  9. Might be best to switch to API now. https://developers.google.com/shopping-content/guides/quickstart
  10. I would check your apache error logs on your xammp control panel.
  11. .06 Lbs is one ounce, perhaps some issue with product weight settings?
  12. Had a strange occurrence today. Two customers arrived at the checkout confirmation page at the same time. They both had the same product and the same quantity in their carts. One customer submitted their credit card info about 40 seconds before the other customer. Both payments were successful but I did not have the stock to fulfill one of them. I guess I'm going to have to add a stock check on stripe payment process somewhere. I understand the web-hook deducts stock but that wouldn't deduct the stock in the other customers cart if they were on the final payment page entering their credit card info. Oddly enough, both customers were located in the same small city and had the same first name. Checking the map they live about 4 minutes from each other. What are the odds...considering thousands of products? Any statistics geeks out there?
  13. We need access to the old addons now, not "shortly". If you refuse to provide access to this open source content authored by developers who offered this content for free, would you at least consider paid access? It's impossible for forum members to provide support to those in need if we can't reference the files.
  14. I have this working on PHP8 but occasionally see a fatal error in my logs? if (is_countable($uspsQuote) && count($uspsQuote) > 0) { $PackageSize = ($order->delivery['country']['iso_code_2'] == 'US' ? sizeof($uspsQuote['Package']) : sizeof($uspsQuote['Package']['Service'])); The error is: PHP Fatal error: Uncaught TypeError: sizeof(): Argument #1 ($value) must be of type Countable|array, null given
×
×
  • Create New...