-
Content count
174 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Smoky Barnable
-
I would check your apache error logs on your xammp control panel.
-
.06 Lbs is one ounce, perhaps some issue with product weight settings?
-
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.
-
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?
-
How To Get ADMIN PASSWORD back or make new one
Smoky Barnable replied to gwnjim's topic in General Support
-
USPS Rate V4, Intl Rate V2 (official support thread)
Smoky Barnable replied to a topic in Shipping Modules
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 -
osCommerce vs. PHP8
Smoky Barnable replied to one_user's topic in osCommerce Online Merchant Community Bootstrap Edition
I recommend comparing your files to OsCommerce Vanilla. I remember having to make changes/updates regarding passwords. https://github.com/ruden/vanilla-oscommerce -
Same issue using Xampp.
-
Just use a domain name that doesn't infringe on the copyright. You created your own fork so you can call it anything you want. Also, they cannot claim they own the open source public domain add-ons from the last twenty years. @osCommerce-Official How about making the old add-ons available until you actually are able to publish a working bug free V4?
-
We finally got rid of PayPal today for reasons to numerous to mention. We are still using Stripe but can anyone suggest another popular payment method we could add?
-
Good. Perhaps add a way for members to upload addons they were able to download before access here was restricted.
-
Yes of course, if V2 support will not be offered here. Thousands would benefit from such a site.
-
osCommerce site and Forums update notice
Smoky Barnable replied to osCommerce-Official's topic in News and Announcements
Great ideas are never obsolete. Old code can easily be updated to PHP8 and made responsive. Serious mistake removing legacy addons, in my humble opinion. -
USPS Rate V4, Intl Rate V2 (official support thread)
Smoky Barnable replied to a topic in Shipping Modules
I manually changed the configuration_key MODULE_SHIPPING_USPS_TYPES in the configuration table in the database as well. If you already made the changes in usps.php, then removing and installing the module would update the table. Seems to work ok now. Yeah, really tired of the usps api changes over the years.😠 -
USPS Rate V4, Intl Rate V2 (official support thread)
Smoky Barnable replied to a topic in Shipping Modules
I noticed today that domestic priority quotes seem to have changed from Priority MailTM to Priority MailRM and as such quotes aren't being displayed. -
You wouldn't believe how many customers have asked me "What is stripe?". I guess I have to just call the payment method "credit card".
-
I've got view counter working on my local xampp server with PHP 8 and MySQL 5.5 however when I uploaded to my host I see the database query in view_counter.php returning an empty result set. This query returns data on my xampp server but is empty on my production site: select *, TIME_TO_SEC( UNIX_TIMESTAMP( now( ) ) - UNIX_TIMESTAMP( last_date ) ) as time, DATE_FORMAT(last_date, '%a, %D %T') as date_time from view_counter where ip_active=1 and language_id = 1 and isbot = 0 and ( (isadmin <> '/admin/')) order by last_date desc limit 20 offset 0 I should note that on my test server there is also some warnings "#1292 Incorrect time value". I'm wondering if this might be because my live site is using MySQL 5.7?
-
jQuery/Ajax Advanced Statistics for osCommerce 2.3
Smoky Barnable replied to Dr. Rolex's topic in General Add-Ons Support
Anyone get this cool add-on to work in PHP8? I almost have it working but I get the following error upon initial page load. "DataTables warning: table id=dataTable - Invalid JSON response. For more information about this error, please see http://datatables.net/tn/1"- 56 replies
-
I can capture customers ip address during the checkout process when customer pays with PayPal, but this fails when customer uses stripe. Is there a way to capture the ip during order creation? Trying to capture in web hook or checkout success has failed thus far. If not, I could just capture upon account creation.
-
It actually was getting most IPv4's ok but for IPv6 this code seems to get both when using CloudFlare. if(isset($_SERVER['HTTP_CF_CONNECTING_IP'])){ $thisIP = $_SERVER['HTTP_CF_CONNECTING_IP']; }else{ $thisIP = $_SERVER['REMOTE_ADDR']; }
-
Does view counter work when using CloudFlare CDN? For example, I can only get customers ip using this code: $customers_ip = $_SERVER["HTTP_CF_CONNECTING_IP"];
-
A recent customer contacted me to make sure her payment went through. She was confused because in her account area the saved card page showed an old expiration date. Doesn't this expiration date get updated automatically when customers get a new card with the same account number? Perhaps she must delete this card and checkout with new card? Regardless, her payment was successful using her saved card which had the wrong expiration date.
-
My hosting company was recently hit with a DDOS attack on the server that was hosting my website. Is there another hosting solution that mitigates these kind of attacks? I have read cloud hosting is good...any recommendations? Trying to avoid downtime.
-
I'm liking the LiteSpeed Web Server.
-
Thanks. I just signed up for the three year HostArmada plan. They are doing a cpanel transfer now.