Page 1 of 2 12 LastLast
Results 1 to 10 of 20
  1. #1
    Join Date
    Jan 2008
    Posts
    18
    Plugin Contributions
    0

    Default Need help with Canpar...

    Hi! I'm using zencart version 1.3.8a with the Canpar Module. I can't seem to get the module to calculate anything. The price is always 0.00$. Hopefuly someone can tell me what to do!!

  2. #2
    Join Date
    Jan 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    I have a feeling it may not be going to the right address to find it's information... Does/did anyone else have this problem?

  3. #3
    Join Date
    Sep 2007
    Posts
    106
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    Hello Moonlilly

    Not sure if I can help solve the problem, but I can make a suggestion.

    1) I had the same issue when I was using Canpar with another cart I will leave unanmed. LOL

    The issue with it was that it was using the incorrect URL to obtain pricing quotes.

    Look in store/includes/modules/shipping/canpar.php

    This is the correct line and URL: $body = file_get_contents('http://www.canpar.com/CanparRateXML/BaseRateXML.jsp?' . $request);

    Just confirm it is correct.

    2) The original Canpar module only gave quotes for Canada locations and gave $0.00 for USA locations. Or maybe it's the other way around.

    The module was never written for use with both countries. Also note, that Canpar doesn't ship to some USA locations, so that may cause $0.00 pricing.


    I have edited the store/includes/modules/shipping/canpar.php to work in both countries with the help of other members here.

    I will attach the canpar.php file for you to use and copy it into the location I gave above.



    I have also found another problem with the Canpar module.
    It allows you to markup the shipping fee, but it doesn't seem to be working.
    I am going to post this problem and see if someone can help fix it.
    Attached Files Attached Files

  4. #4
    Join Date
    Mar 2009
    Posts
    18
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    Has there been any headway on this module at all?

  5. #5
    Join Date
    Sep 2007
    Posts
    106
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    It works, but the markup feature doesn't work.
    I decided not to use it because the quotes seem lower than canadapost and UPS. I use these 2 for shipping quotes and if canpar is cheaper, I use it and keep the little bit of extra I might get.

  6. #6
    Join Date
    Jun 2003
    Posts
    33,721
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    canadapost and UPS
    Just a note: If you are using live quotes from one of the shipping companies and then actually shipping with someone else you could lose your access privileges. Not to mention, as a consumer, if I chose UPS and someone else delivered my package I might be upset.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  7. #7
    Join Date
    Sep 2007
    Posts
    106
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    I have never had the chance to do it. Canadapost is the most selected service and always the cheapest and easiest.

    Canpar mod quotes prices $3-5 less then it should be, so I would lose money using this mod.

    I would suggest to anyone not to use it.

  8. #8
    Join Date
    Oct 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    I was having the same problem with my Canpar module. The shipping calculation had been working for over a year and then all of a sudden stopped working and would only calculate zero.

    Long story short, the solution for me was to replace the following code in the canpar.php file (in modules/shipping)

    Replace these two lines:
    $srcFSA = substr(strtoupper(SHIPPING_ORIGIN_ZIP), 0, 3);
    $desFSA = substr(strtoupper($order->delivery['postcode']), 0, 3);

    With this:
    $srcFSA = substr(str_replace(" ", "", strtoupper(SHIPPING_ORIGIN_ZIP)), 0, 6);
    $desFSA = substr(str_replace(" ", "", strtoupper($order->delivery['postcode'])), 0, 6);

    Explanation -- Canpar recently changed it so they need all six postal code digits sent when calculating shipping (instead of just 3 before)

    Hope this solves it for you as well!!

  9. #9
    Join Date
    Sep 2007
    Posts
    106
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    Mine was working until like you said, they went to all 6 chacracter postal codes.

    My problem is that the quotes are much lower than what the price is when I go to ship it.

    Seems to be 25-30% lower than the counter price.

    I tried using the mark up feature, but it doesn't seem to work.

  10. #10
    Join Date
    Mar 2009
    Posts
    57
    Plugin Contributions
    0

    Default Re: Need help with Canpar...

    Quote Originally Posted by breck View Post
    Mine was working until like you said, they went to all 6 chacracter postal codes.

    My problem is that the quotes are much lower than what the price is when I go to ship it.

    Seems to be 25-30% lower than the counter price.

    I tried using the mark up feature, but it doesn't seem to work.
    I have the same problem. I really wish I could figure out the mechanics of how pricing is calculated. I can make a url string out of the code and submit it, and I get the correct number back, so it's not the canpar module that's the problem. Somewhere that number is changed.
    Also there's the price adjustments not working, which is just insult to injury at this point.
    I'm willing to modify code, and I will even provide good code back to the community, but I need to know where to look for it. I don't have the time to go through all of zencart. someone point me in the right direction please.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. zencart plays with my shipping data -Canpar
    By Luxifer in forum Addon Shipping Modules
    Replies: 1
    Last Post: 15 Sep 2009, 05:26 PM
  2. Need help with stylesheet - Need to delete the categories
    By annav in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 12 Jun 2009, 12:41 PM
  3. New some help with Canpar shipping
    By breck in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 21 Mar 2008, 12:09 AM
  4. Need Help with a couple of issues with the shop
    By chrisb in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 3 Oct 2006, 12:36 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg