Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

maxtors

Pioneers
  • Posts

    57
  • Joined

  • Last visited

1 Follower

Profile Information

  • Real Name
    max

maxtors's Achievements

  1. i am having a nightmare trying to get the USPS to work i keep getting a checkout shipping loop with the new files anyone else have this problem?
  2. I'm stuck in a checkout shipping loop???
  3. this is not working for me also i am on rc1 anyone get a working USPS? need to fix this asap
  4. anyone get Priority and Express Mail international working?
  5. can someone help me make this contribution compliant with the new Google Feed specifications from September 22 2011 Missing recommended attribute: availability Missing recommended attribute: google product category http://addons.oscommerce.com/info/6531
  6. try this $this->intl_types = array('GLOBAL EXPRESS' => 'Global Express Guaranteed', 'GLOBAL EXPRESS NON-DOC RECT' => 'Global Express Guaranteed Non-Document Rectangular', 'GLOBAL EXPRESS NON-DOC NON-RECT' => 'Global Express Guaranteed Non-Document Non-Rectangular', 'EXPRESS MAIL INT' => 'Express Mail International', 'EXPRESS MAIL INT FLAT RATE ENV' => 'Express Mail International Flat-Rate Envelope', 'PRIORITY MAIL INT' => 'Priority Mail International', 'PRIORITY MAIL INT FLAT RATE ENV' => 'Priority Mail International Flat-Rate Envelope', 'PRIORITY MAIL INT FLAT RATE BOX' => 'Priority Mail International ' . $this->PriorityFlatRateBoxType, 'FIRST-CLASS MAIL INT' => 'First Class Mail International package** ' . $this->FirstClassIntType', 'First Class Mail Int Lrg Env' => 'First-Class Mail International Large Envelope**', 'First Class Mail Int Package' => 'First-Class Mail International Package**', 'First Class Mail Int Letter' => 'First-Class Mail International Letter**');
  7. Here is My quick fix for USPS domestic rates and international issues i tested both and both are now working Find $this->intl_types = array('GLOBAL EXPRESS' => 'Global Express Guaranteed', 'GLOBAL EXPRESS NON-DOC RECT' => 'Global Express Guaranteed Non-Document Rectangular', 'GLOBAL EXPRESS NON-DOC NON-RECT' => 'Global Express Guaranteed Non-Document Non-Rectangular', 'EXPRESS MAIL INT' => 'Express Mail International', 'EXPRESS MAIL INT FLAT RATE ENV' => 'Express Mail International Flat-Rate Envelope', 'PRIORITY MAIL INT' => 'Priority Mail International', 'PRIORITY MAIL INT FLAT RATE ENV' => 'Priority Mail International Flat-Rate Envelope', 'PRIORITY MAIL INT FLAT RATE BOX' => 'Priority Mail International ' . $this->PriorityFlatRateBoxType, 'FIRST-CLASS MAIL INT' => 'First Class Mail International package** ' . $this->FirstClassIntType); Find $size = sizeof($uspsQuote); for ($i=0; $i<$size; $i++) { list($type, $cost) = each($uspsQuote[$i]); $type = str_replace('&lt;sup&gt;&amp;reg;&lt;/sup&gt;', '', $type); $type = str_replace('&lt;sup&gt;&amp;trade;&lt;/sup&gt;', '', $type); $type = str_replace('**', '', $type); Find $service = ereg('<SvcDescription>(.*)</SvcDescription>', $services[$i], $regs); $service = $regs[1]; $service = str_replace('&lt;sup&gt;&amp;reg;&lt;/sup&gt;', '', $service); $service = str_replace('&lt;sup&gt;&amp;trade;&lt;/sup&gt;', '', $service); $postage = ereg('<Postage>(.*)</Postage>', $services[$i], $regs);
  8. Here is My quick fix for USPS domestic rates and international issues i tested both and both are now working Find $this->intl_types = array('GLOBAL EXPRESS' => 'Global Express Guaranteed', 'GLOBAL EXPRESS NON-DOC RECT' => 'Global Express Guaranteed Non-Document Rectangular', 'GLOBAL EXPRESS NON-DOC NON-RECT' => 'Global Express Guaranteed Non-Document Non-Rectangular', 'EXPRESS MAIL INT' => 'Express Mail International', 'EXPRESS MAIL INT FLAT RATE ENV' => 'Express Mail International Flat-Rate Envelope', 'PRIORITY MAIL INT' => 'Priority Mail International', 'PRIORITY MAIL INT FLAT RATE ENV' => 'Priority Mail International Flat-Rate Envelope', 'PRIORITY MAIL INT FLAT RATE BOX' => 'Priority Mail International ' . $this->PriorityFlatRateBoxType, 'FIRST-CLASS MAIL INT' => 'First Class Mail International package** ' . $this->FirstClassIntType); Find $size = sizeof($uspsQuote); for ($i=0; $i<$size; $i++) { list($type, $cost) = each($uspsQuote[$i]); $type = str_replace('&lt;sup&gt;&amp;reg;&lt;/sup&gt;', '', $type); $type = str_replace('&lt;sup&gt;&amp;trade;&lt;/sup&gt;', '', $type); $type = str_replace('**', '', $type); Find $service = ereg('<SvcDescription>(.*)</SvcDescription>', $services[$i], $regs); $service = $regs[1]; $service = str_replace('&lt;sup&gt;&amp;reg;&lt;/sup&gt;', '', $service); $service = str_replace('&lt;sup&gt;&amp;trade;&lt;/sup&gt;', '', $service); $postage = ereg('<Postage>(.*)</Postage>', $services[$i], $regs);
  9. Have installed this contribution on a heavily modified site but i ran into a few problems maybe someone can help me with 1: on product_info if i put a price of 0.00 for the master product it is still showing a price of 0.00 2: master and slave products are still showing on product_new page 3: how come slave product images do not pop-up into a larger image when clicked?
  10. Hi i have v1.5 and it works fine but my orders.php page takes 20 to 30 sec to load anyone else have this problem or know how i can fix this asap thanks
  11. Hi i installed GCO works fine but in my admin orders it is very slow to load like 10 sec to open an order did not happen before i installed GCO? anyone else have this problem?
  12. That did not fix it anything else i can try?
  13. Hello mcafee secure gave me a problem with this contribution with an SQL Injection error does anyone know how i can fix this error with out removing the contribution thanks
×
×
  • Create New...