Thread: AUSTPost module

Page 9 of 33 FirstFirst ... 789101119 ... LastLast
Results 81 to 90 of 321
  1. #81
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: AUSTPost module

    Quote Originally Posted by imperialis View Post
    Hi Rod,
    Could this be the problem since i'm using gms
    if (MODULE_SHIPPING_AUSTPOST_WEIGHT_FORMAT == "kgs") { $sweight = $shipping_weight * 1000 ; }
    else { $sweight = $shipping_weight ; }
    Ordinarily I'd say yes, but in this instance we have confirmed that the data being sent to the server has valid parameters and returns a valid result (at least when using a web browser), so all of your inputs are correct (at least for the randomly chosen test item).

    The problem therefore is in the data output. About the only thing I can think of at the moment is that it is being disabled for some reason.

    Try enabling ALL shipping options and see if you/we can deduce *exactly* what methods are considered valid, and which ones should be valid, but don't show, and anything that does show but shouldn't.
    Something strange is going on and I still can't think what.

    Quote Originally Posted by imperialis View Post
    When I click the links I get
    charge=8.3 days=2 err_msg=OK
    And that is what the AP module should also be seeing).

    Quote Originally Posted by imperialis View Post
    I have curl enabled doesn't seem to make a difference
    When changing this option (or any other module options) you need to ensure you close your webbrowser before retrying, 'coz zen-cart likes to cache queries making it appear that a change has had no effect.

    Anyway, lemme know what you find by enabling all shipping options.

    Cheers
    Rod.

    ps. You might also try running the AP module alone 'cos there may be some kind of conflict with your table rate module.

  2. #82
    Join Date
    Apr 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: AUSTPost module

    I have enabled all shipping option but it doesn't seem to have made a difference i'm still only getting satchels

  3. #83
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: AUSTPost module

    Quote Originally Posted by imperialis View Post
    I have enabled all shipping option but it doesn't seem to have made a difference i'm still only getting satchels
    Very odd.

    Next step.
    Load /includes/modules/shipping/autpost.php itno a text editor.
    On or around line 878 you'll see a line that starts with
    // echo 'INFO .................

    Remove the leading slashes //
    Resave the file.
    Ensure that you have the cURL option enabled.

    Try ordering our test product and let me know what output you get.

    Cheers
    Rod.

  4. #84
    Join Date
    Mar 2008
    Posts
    64
    Plugin Contributions
    0

    Default Re: AUSTPost module

    Hi All,

    Where does the module pass through what images it will use for the shipping?

    i.e I only use Australia Post therefore want to remove the austpost_logo.jpg from the invoice that goes to the customer.

    Also has anyone used this module with Super Orders as im only getting the austpost_logo.jpg image and not the shipping type. eg "Parcel Post"

    Any help in the right direction would be great.

    Thanks

    Brett

  5. #85
    Join Date
    Apr 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: AUSTPost module

    The test product has sold out so I have used the pocket spell book it still only comes up with satchels and this error

    ERROR:

    Found
    The document has moved here.


    --------------------------------------------------------------------------------

    Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.2.5 Server at austpost.vcsweb.com Port 80
    INFO:

    ERROR:

    Found
    The document has moved here.


    --------------------------------------------------------------------------------

    Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.2.5 Server at austpost.vcsweb.com Port 80
    INFO:

    ERROR:

    Found
    The document has moved here.


    --------------------------------------------------------------------------------

    Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.2.5 Server at austpost.vcsweb.com Port 80
    INFO:

    ERROR:

    Found
    The document has moved here.


    --------------------------------------------------------------------------------

    Apache/2.2.3 (Unix) mod_ssl/2.2.3 OpenSSL/0.9.8d PHP/5.2.5 Server at austpost.vcsweb.com Port 80

  6. #86
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: AUSTPost module

    Quote Originally Posted by imperialis View Post
    The test product has sold out so I have used the pocket spell book it still only comes up with satchels and this error
    ERROR:
    Found
    The document has moved here.
    --------------------------------------------------------------------------------
    This is a new one on me. The error message is technically valid/correct, but for some reason or other, the redirection isn't being followed (at least not for you).
    This leads me to think that this is probably a server configuration setting/option somewhere that is preventing scripted redirects from taking place. You'll probably need to contact your ISP for help on this one.

    Meanwhile, I can can offer you a couple of workarounds:

    Workaround#1 :
    load the current /modules/shipping/austpost.php into a text editor. Locate line 108 (or therebouts)... it current reads
    $SERVER="http://austpost.vcsweb.com" .
    Change it to read
    $SERVER = "http://drc.edeliver.com.au".
    Next.... Scroll down to line#130... uncomment the entire block of text/settings for the 'fixed price items and fees'. Adjust to suit. (Note: there are a couple of errors in this block that will also need fixing, namely, any of the items that have values seperated by commas need to be quoted... eg:
    $CostINS=1.20,1.20,5.50,2.00 ;
    Will need to be changed to
    $CostINS="1.20,1.20,5.50,2.00" ;

    Save the file, and all should be ok.

    Workaround#2.
    Use an older version of the AP module (I suggest the last in the V1 series).
    This should work 'out of the box', but you will find that this one doesn't have all of the same shipping options that are available in the V2 series (Sorry, I can't recall the changes off the top of my head). You will find that the V1 versions allow you to enter the 'fixed price' costs via the admin configuration screen though, which means you'll not have to edit any .php code.

    Hopefully these tips will be useful to you, but please do keep in mind that the core of the problem seems to relate to your server not being able to follow the redirects, and only your ISP can help you with that one.

    Cheers
    Rod

  7. #87
    Join Date
    Apr 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: AUSTPost module

    Hi Rod,
    I haven't tried what you have said yet, I will contact my host first and see what they say as when I had a look this morning letter rate was showing but not regular post it's all very odd

  8. #88
    Join Date
    Jun 2008
    Posts
    2
    Plugin Contributions
    0

    Default Re: AUSTPost module

    Hi Rod,

    Great module, it's one of the reasons I'm finding Zen Cart to be so much more usable than osCommerce!

    I sell custom-made button badges, and really want to use large letter to send them in order to keep customer costs reasonable. The badges themselves are under 1cm high, and up to 3 cm in diameter. I can fit five easily into a size 0 padded bag, and at least 20 into a size 2. I've set the dimensions on my first test badge to .2 cm high and 1x1cm with a weight of .0001 kg, but I'm still getting only parcel options when I order one badge. Not sure what I'm doing wrong there.

    I'm very concerned that when customers are trying to order 20 badges it'll force them to parcel, even though I know it can send as a large letter. I'd appreciate any advice.

    Cheers,
    Catherine

  9. #89
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: AUSTPost module

    Quote Originally Posted by imperialis View Post
    Hi Rod,
    I haven't tried what you have said yet, I will contact my host first and see what they say as when I had a look this morning letter rate was showing but not regular post it's all very odd
    Letter rates are another of the 'fixed price' charges.
    The item you tried with is obviously considered small and light enough to qualify. I guess you still have the letter rate option enabled from the earlier tests ;-)

    Cheers
    Rod

  10. #90
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: AUSTPost module

    Quote Originally Posted by Awesome Badges View Post
    The badges themselves are under 1cm high, and up to 3 cm in diameter. I can fit five easily into a size 0 padded bag, and at least 20 into a size 2.
    Unfortunately, what *you* can fit into a bag isn't going to be the same as what the AP module considers will fit. The algorithms to do that are far too complex for me, and are in fact considered something of a holy grail among some programmers.

    The algorithm used by the AP module is a very simple "stack by height, keep track of maximum widths and lengths".

    Quote Originally Posted by Awesome Badges View Post
    I've set the dimensions on my first test badge to .2 cm high and 1x1cm with a weight of .0001 kg, but I'm still getting only parcel options when I order one badge. Not sure what I'm doing wrong there.
    Although probably not relevent, but is there a reason for you to be weighing your items in Kgs when gms seems to be much more suited?

    I say 'probably not relevent' because it *shouldn't* be relevent, however, I can't recall what precision level I am performing the math functions with, which means that after multiplying and rounding this item may end up with an effective weight of zero, in which case the minimum weight allowed by parcel will be applied, thus nullifying the letter rate options (it does this to protect the merchant from under charging).
    In other words, try changing your weights from kgs to gms, OR, add a little more mass to your badges, eg, 0.001kg.

    Also check your TARE weight settings. These weights get added to the total product weight, which may be pushing your weights over the limits.

    Quote Originally Posted by Awesome Badges View Post
    I'm very concerned that when customers are trying to order 20 badges it'll force them to parcel, even though I know it can send as a large letter. I'd appreciate any advice.
    This can and probably always will be an issue, because there are far to many different scenarios that need to be considered when producing a program such as the AP module. There is always going to be someone that needs something 'special'. Usually a compromise and workaround is often the best solution. In your case, I would suggest considering setting up special departments for 'bulk buys' and using the weights/dimensions of the package containing the combined items for shipping purposes.

    That, or very carefully select your badge dimensions so that the stacking algorithm produces the results that you require, while still being 'realistic'.

    Cheers
    Rod.

    PS. Please keep in mind that as well as 'stacking' items, the AP module always re-orientates them prior to stacking. This means that regardless of how you/we view an item, the AP module treats the longest dimension as the length, the shortest dimension as the height, and the remaining dimension as the width.

 

 
Page 9 of 33 FirstFirst ... 789101119 ... LastLast

Similar Threads

  1. Austpost module v 3.02
    By pchappy in forum Addon Shipping Modules
    Replies: 1
    Last Post: 23 Feb 2009, 02:41 PM
  2. Austpost module
    By crankyvirgo in forum Addon Shipping Modules
    Replies: 1
    Last Post: 15 Apr 2008, 05:51 AM
  3. AustPost Module Logos
    By tannersports in forum Built-in Shipping and Payment Modules
    Replies: 11
    Last Post: 20 Mar 2008, 07:25 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR