Re: Is there a functioning FedEx module for 1.3.8a?
Installed v1.4.3 on ZC v1.3.8. Everything seems to be working, but my rates are off. For instance, a 1lb FedEx Home package to zone 1 should be 4.57 + 2.05 residential surcharge + .23 fuel surcharge , for a total of 6.85. I'm showing 8.80 on the shipping estimator. The correct account number is being used.
Re: Is there a functioning FedEx module for 1.3.8a?
Think I figured it out. My test item is a couple hundred dollars and it's using that to set insurance rates. However, I don't want to do this as I don't use FedEx insurance. Any way to turn that off?
Re: Is there a functioning FedEx module for 1.3.8a?
S U C C E S S
FedEx was NOT showing up in either the Shipping Estimator OR Checkout. After double checking everything I had done, searching all of the threads, I asked FedEx.
I was told to [FONT="Fixedsys"]remove all dashes from account number and phone number AND to remove all periods from addresses.[/FONT]
Did so and all problems solved. :clap:
Thanks to all here AND to the great folks at FedEx.
fred
Re: Is there a functioning FedEx module for 1.3.8a?
Quote:
Originally Posted by
swingandmiss
Think I figured it out. My test item is a couple hundred dollars and it's using that to set insurance rates. However, I don't want to do this as I don't use FedEx insurance. Any way to turn that off?
In your setup for both Fedex modules, just set the "Insurance" to NONE - think this should work for ya.
Re: Is there a functioning FedEx module for 1.3.8a?
Quote:
Originally Posted by
popsshop
In your setup for both Fedex modules, just set the "Insurance" to NONE - think this should work for ya.
It is set to NONE and I'm still getting insurance added to the rate.
Re: Is there a functioning FedEx module for 1.3.8a?
I just want to double check.
My Fedex plugin is working just fine. I just got a letter from Fedex that they are discontinuing support of Fedex Ship Manager API solutions.
We are unaffected by this, right? I don't have to do anything?
Re: Is there a functioning FedEx module for 1.3.8a?
I tried the fix and removed all the dashes from the fed ex info and telephone number and niw when I add something to the cart, I get:
1054 Unknown column 'products_length' in 'field list'
in:
[SELECT products_length, products_width, products_height, products_ready_to_ship, product_is_always_free_shipping FROM zen_products WHERE products_id = 16 LIMIT 1]
Any suggestions?
thank you,
betty
Re: Is there a functioning FedEx module for 1.3.8a?
Nevermind on that error, I just upgraded to 1.43 and it disappeared.
One thung remainging though on the shipping estimator, despite the fact I have the mod set to Lbs. it si showing the weight in Kgs. Is there a way to fix this?
thank you again,
betty
Re: Is there a functioning FedEx module for 1.3.8a?
I just installed FedEx Add-on and its not returning any rates..:(
I signed up for an account on FedEx and put all the info, I also double checked not to have dashes and dots in the phone number, acount # and address.
Anyone has any idea why it might be?
For cURL Path and Proxy, I have NONE
Re: Is there a functioning FedEx module for 1.3.8a?
Quote:
Originally Posted by
bettysue
Nevermind on that error, I just upgraded to 1.43 and it disappeared.
One thung remainging though on the shipping estimator, despite the fact I have the mod set to Lbs. it si showing the weight in Kgs. Is there a way to fix this?
thank you again,
betty
Edit the includes/extra-configures/shipping_units.php file:
<?php
// Shipping units to be used/displayed throughout the store:
define('TEXT_PRODUCT_WEIGHT_UNIT','kgs');
define('TEXT_SHIPPING_WEIGHT','kgs');
define('SYSTEM_WEIGHT_UNITS','kgs'); //(options: 'kgs' or 'lbs')
define('SYSTEM_DIMENSION_UNITS','cm'); //(options: 'cm' or 'in')
?>
change to:
<?php
// Shipping units to be used/displayed throughout the store:
define('TEXT_PRODUCT_WEIGHT_UNIT','lbs');
define('TEXT_SHIPPING_WEIGHT','lbs');
define('SYSTEM_WEIGHT_UNITS','lbs'); //(options: 'kgs' or 'lbs')
define('SYSTEM_DIMENSION_UNITS','in'); //(options: 'cm' or 'in')
?>