Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dr_lucas

Pioneers
  • Posts

    357
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by dr_lucas

  1. Merry Christmas everyone! :)


    I have an issue with the period (.) character


    http://example.com//index.php?cPath=44_95&page=1&range=1.99_2.99


    gets rewritten according to the rule and the 1.99_2.99 becomes 199_299


    It doesn't happen when I turn off USU5 pro, so it's an issue with the module coding or .htaccess(?)


    How can I escape the period safely? (ie. without causing some random side effects)


  2. @@Jack_mcs

    Yes, I did on my own site and it generated only 1 file of 50,000 products (out of the 90,000 I have). The file size was 12MB.

    I have an older version (1.2) so that is possibly the reason it did not generate the consecutive file, but still - 12MB form 50,000 products is larger than the allowed standard.

  3. @@Jack_mcs - first, thank you for the contribution!

     

    Sorry if the question was asked and answered before, but does this module support catalogs with over 50,000 products? Does it auto-generate additional sitemap files as required? Does it make sure the total file size of each sitemap is under 10mb?

  4. FedEx is moving to dimensional shipping on 1 Jan 2015.  See http://news.van.fedex.com/fedex-announces-pricing-changes

     

     

    Looks like this version of FedEx never had dimensional shipping added.

     

    Anyone looking at that?

     

    If I read that right, FedEx will apply dimensional shipping to Freight and Ground services, but they will also keep the weight based shipping.

    This change to these 2 specific services seems to be USA exclusive and all other services are not affected anyway.

    As I do not personally ship inside the USA, do not use any of these mentioned services and always ship by weight only, I did not have the need to look into this and will not spend the time to modify the module, but it should be quite easy to modify it and add the dimension shipping or you can hire a freelancer to modify it for you from places like http://www.freelancer.com

  5. in your catalog/includes/modules/shipping/fedexwebservices.php

     

    Try this:

     

    Find:

                 if($ShipmentRateDetail->ShipmentRateDetail->RateType=='PAYOR_LIST_PACKAGE')
    //     if($ShipmentRateDetail->ShipmentRateDetail->RateType==('PAYOR_LIST_PACKAGE' || 'PAYOR_LIST_SHIPMENT')) // try this if having international quoting errors
    

     

    Change to:

    
    //              if($ShipmentRateDetail->ShipmentRateDetail->RateType=='PAYOR_LIST_PACKAGE')
      if($ShipmentRateDetail->ShipmentRateDetail->RateType==('PAYOR_LIST_PACKAGE' || 'PAYOR_LIST_SHIPMENT')) // try this if having international quoting errors
    

  6. Note, if you change the wsdl address from test to production server and vice versa, it would also be best if you put 2 wsdl files in separate folders and point to each separately, depends on the status of your site (production or test), this is to avoid possible caching problems of the wsdl which may still continue using the production or test servers despite the editing of the wsdl file.

    for example:

    for test point to /catalog/includes/wsdl/test/rateService_V9.wsdl

    and for production point to /catalog/includes/wsdl/production/rateService_V9.wsdl

     

    Regarding the actual SOAP response you got, if you want me to debug it, I will need to see the full exact request, please send it to me untouched (as is) via PM, including the full credentials.

  7. The response shows errror 1000 authentication failed, so I assume there is some mistake with your provided credentials. You probably have missing or wrong credentials, such as missing the authentication key from fedex.

    Does it give you any shipping quotation for other destinations at all?

  8. By the way, thinking again, I am pretty sure that your configure.php in the /includes and /admin/includes are pointing to a different DIR_WS_MODULES directory, I bet one is to modules and the other one to mod, which is incorrect and should be the same in both of the configuration files and of course should match your directory tree.

    So, check this first...

×
×
  • Create New...