Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

negativeexistence

Pioneers
  • Posts

    68
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by negativeexistence

  1. 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

  2. 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

  3. 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.

  4. 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...

  5. @@ksmaltz

     

    The second problem is that on the local server, it appears to work fine. Payment processed, order shows up in the admin, and I get taken to the checkout_success page. When I put it live on my server (and update the manager.paypal), it instead shows the login page in the iframe, the payment gets sent to PayPal, but nothing shows up in the admin, so the order cannot be tracked or logged in. I feel like I must have missed something obvious, but I can't figure it out. And with it sending all orders as real orders, it is a pain because I have to refund everything.

     

     

     

    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.

  6. My fingers are crossed...

    Dear Frederick,

    We apologize for the difficulty that you have had with our server connectivity.

    The issue is being investigated by network engineers and the website should be fully functional shortly.

    We apologize for any inconvenience.

     

    If you have any additional questions or concerns, please contact us again.

    Thank you for emailing your Postal Service™,

     

    Todd A

    USPS Internet Customer Care Center

    [email protected]

  7. 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

  8. 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

  9. @@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

     

    Warning: include(includes/modules/shipping/usps.php) [function.include]: failed to open stream: No such file or directory in /home/negative/public_html/negativeexistence/includes/classes/shipping.php on line 37

     

    Warning: include() [function.include]: Failed opening 'includes/modules/shipping/usps.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/negative/public_html/negativeexistence/includes/classes/shipping.php on line 37

     

    Fatal error: Class 'usps' not found in /home/negative/public_html/negativeexistence/includes/classes/shipping.php on line 39

  10. Kudos to FlyingKites for providing a working usps.php file. I've fixed the file so that custom handling for USPS domestic services properly adds. After some testing, I'll attach the file in a new thread (or on the old USPS Methods thread). I've tried fixing this USPS Rate V4, Intl Rate V2 contribution to no avail.

     

    @@a.forever Are you jimping ship on USPS Rate V4, Intl Rate V2 / Restricted Methods?

  11. 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...