Page 1 of 1

Fedex shipping

Posted: Thu Mar 01, 2007 10:30 pm
by vidyadoiphode
hello,
i am using fedex shipping to calculate shipping price.
my script doesnt give me ground shipping value, it gives other [rices properly.
can anyone tell me any solution?

Re: Fedex shipping

Posted: Fri Mar 02, 2007 12:08 am
by Christopher
vidyadoiphode wrote:can anyone tell me any solution?
Not without seeing the script.

Posted: Fri Mar 02, 2007 12:09 am
by tristanlee85
Could you elaborate a little more, such as the script you are using, how you are defining the rate tables, etc...

Posted: Fri Mar 02, 2007 5:44 am
by vidyadoiphode
feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

Code: Select all

$fedex->setCarrierCode("FDXE");
    $fedex->setDropoffType("REGULARPICKUP");
    $fedex->setService($service, $serviceName);
    $fedex->setPackaging("YOURPACKAGING");
    $fedex->setWeightUnits("LBS");
    $fedex->setWeight(17);
    $fedex->setOriginStateOrProvinceCode("CA");
    $fedex->setOriginPostalCode(90014);
    $fedex->setOriginCountryCode("US");
   
   $fedex->setDestStateOrProvinceCode("CA");
    $fedex->setDestPostalCode(90210);
    $fedex->setDestCountryCode("US");
    $fedex->setPayorType("SENDER");

i am using fedex.php.
and set all above variable with account number and meter number


feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

Posted: Fri Mar 02, 2007 8:09 am
by feyd
Where did you get this class from?