Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

negativeexistence

Pioneers
  • Posts

    68
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by negativeexistence

  1. I have been notified by a customer in Russia that rates are not being generated during checkout. I attempted to recreate the problem and found the same issue. There is not error or warning message. I checked my database and have RU and RUS for Russian Federation. Any ideas? Thanks!
  2. Hello! I have discovered a problem within my admin > Categories Products > new product When I attempt to use "Restrict USPS Shipping Methods" the radio boxes don't have any affect on the front ends checkout shipping options. Also, they don't stay checked after the listing is saved. Also, there are more radio boxes than options...
  3. Hello! I have found a problem with the "Advanced Special Offers and Discounts for OSC v2.3.1" addon and wondered if anyone could point me in the right direction... The module was installed and was working great untill I deleted a store category which housed linked / duplicate products. (The linked / duplicate products being a product which was listed in more than one category) The items that once shared categories but are now in only one category and are not linking to the product page in products_new.php. Instead they are directed to the root. Under "specials by category" when I search for these particular products they are shown twice... one "active" and one not. I have emptied the "specials" table in phpmyadmin and these are still appearing twice under "specials by category" and the problem still persists on the products_new.php page. If you can think of a quick fix, please let me know. Thanks! -Alex
  4. Hello, When I altered my usps shipping info and selected save I get: Warning: addslashes() expects parameter 1 to be string, array given in /home/negative/public_html/snowdenguitars/admin/modules.php on line 38 Warning: addslashes() expects parameter 1 to be string, array given in /home/negative/public_html/snowdenguitars/admin/modules.php on line 38 Warning: addslashes() expects parameter 1 to be string, array given in /home/negative/public_html/snowdenguitars/admin/modules.php on line 38 Warning: Cannot modify header information - headers already sent by (output started at /home/negative/public_html/snowdenguitars/admin/modules.php:38) in /home/negative/public_html/snowdenguitars/admin/includes/functions/general.php on line 34 I have uninstalled and reinstalled without any luck. any ideas? Thanks, -Alex
  5. Anyone successfully using this module with powweb?
  6. no dice... I have been on the phone with Paypal for several hours trying various things all without any luck.
  7. okay - apparently this particular host (powweb) will not allow me to edit the php.ini file. i had to call in and ask for the following changes "Turn on register_globals and enable the MySQL extension" - they will be resetting the server shortly & I will place a test order and repost if that did the trick.
  8. I now believe this to be a php.ini issue. I uploaded my php.ini file from my other sites and it crashed my new site - 500 Internal Server Error register_globals = on extension=mysql.so my host is powweb - not sure if that is relavant...
  9. @@ksmaltz I am having the same issue... I have set this up on 2 other websites without any problems. Now all of the sudden this iFrame loop thing. I have called paypal and they told me to reinstall but it didn't help. Any ideas would be appreciated.
  10. How do I accomplish this? My previously saved dimensions are not appearing upon editing... Thanks!
  11. Everything has been working up until now. I am getting the following warnings: Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : Start tag expected, '<' not found in /home/negative/public_html/includes/modules/shipping/usps.php on line 390 Warning: simplexml_load_string() [function.simplexml-load-string]: 27 in /home/negative/public_html/includes/modules/shipping/usps.php on line 390 Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in /home/negative/public_html/includes/modules/shipping/usps.php on line 390
  12. @@badbo Thanks but I'm using 2.3 fresh installation. Maybe your cure might work for me - I will check.
  13. @@kymation - Thanks for the new file!!! This is alot cleaner looking than the Frankenstein files I was working with earlier. Does anyone have a fix for domestic first class yet?
  14. just reinstalled usps.php and the usps shipping module is working... it has killed my zone rates though. When I try to reinstall zone rates I get: Warning: reset() expects parameter 1 to be array, null given in /home/negative/public_html/negativeexistence/admin/modules.php on line 230 Warning: Variable passed to each() is not an array or object in /home/negative/public_html/negativeexistence/admin/modules.php on line 231
  15. @@wkdwich I am running 2.3 with USPS restricted methods. I uploaded the new usps.php file, mentioned earlier in this thread & made the changes from post 18. It was working on both of my sites... was. Now one site works and the other spits this out at checkout_shipping.php
  16. @@tomt Thanks so much!!!! This worked for both of my 2.3 sites.
  17. @@a.forever Are you jimping ship on USPS Rate V4, Intl Rate V2 / Restricted Methods?
  18. Hi, As per ealier instructions I have come up with the following junk code which does not work... Anyone see any problems? Am I overlooking something? foreach(explode(', ', MODULE_SHIPPING_USPS_TYPES) as $request_type) { if(is_numeric($request_type) || preg_match('#International#' , $request_type)) continue; $FirstClassMailType = ''; $Container = 'VARIABLE'; if (preg_match('#First\-Class#', $request_type)) { if ($shipping_weight > 13/16) continue; else { $service = 'First-Class Mail'; if ($request_type == 'First-Class MailRM Large Envelope') $FirstClassMailType = 'FLAT'; else $FirstClassMailType = 'PARCEL'; } } elseif ($request_type == 'Media MailRM') $service = 'MEDIA'; // Changed from Parcel PostRM 20130129 elseif ($request_type == 'Standard PostRM') $service = 'PARCEL'; elseif (preg_match('#Priority MailTM#', $request_type)) { $service = 'PRIORITY COMMERCIAL'; if ($request_type == 'Priority MailTM Flat Rate Envelope') $Container = 'FLAT RATE ENVELOPE'; elseif ($request_type == 'Priority MailTM Legal Flat Rate Envelope') $Container = 'LEGAL FLAT RATE ENVELOPE'; elseif ($request_type == 'Priority MailTM Padded Flat Rate Envelope') $Container = 'PADDED FLAT RATE ENVELOPE'; elseif ($request_type == 'Priority MailTM Small Flat Rate Box') $Container = 'SM FLAT RATE BOX'; elseif ($request_type == 'Priority MailTM Medium Flat Rate Box') $Container = 'MD FLAT RATE BOX'; elseif ($request_type == 'Priority MailTM Large Flat Rate Box') $Container = 'LG FLAT RATE BOX'; elseif ($request_type == 'Priority MailTM Regional Rate Box A') $Container = 'REGIONALRATEBOXA'; elseif ($request_type == 'Priority MailTM Regional Rate Box B') $Container = 'REGIONALRATEBOXB'; elseif ($request_type == 'Priority MailTM Regional Rate Box C') $Container = 'REGIONALRATEBOXC'; } elseif (preg_match('#Priority Mail ExpressTM#', $request_type)) { $service = 'EXPRESS COMMERCIAL'; if ($request_type == 'Priority Mail ExpressTM Flat Rate Envelope') $Container = 'FLAT RATE ENVELOPE'; elseif ($request_type == 'Priority Mail ExpressTM Legal Flat Rate Envelope') $Container = 'LEGAL FLAT RATE ENVELOPE'; elseif ($request_type == 'Priority Mail ExpressTM Flat Rate Boxes') $Container = 'FLAT RATE BOX'; }
×
×
  • Create New...