close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

UPS & USPS errors

Thread began 10/13/2009 11:09 pm by ebayer932344679 | Last modified 10/14/2009 9:32 am by ebayer932344679 | 1071 views | 1 replies

ebayer932344679

UPS & USPS errors

I am using PowerStore 2, Dreamweaver CS3, Windows.

After I press button "Checkout With Paypal", I was redirected to Paypal and log in to my another paypal account, then after I press button "Continue", I was redirected to page checkout_failure.php, and got the following error message:
-------------------------------------------------------------------------------------
We're sorry

Your transaction could not be completed. Either your credit card information or billing address has problems and cannot be processed

Please return to checkout and try again.
Paypal Full Response :
USPS Full Response :
80040b1a API Authorization failure. RateV3 is not a valid API name for this protocol. UspsCom::DoAuth UPS Full Response :
Rating and Service1.00010FailureHard111286new york is not a valid state abbreviation for United States.FedEx Full Response :
Auth Request : xxxxxx_api1.axxxn.com4QBQBxxxxxSV7MAiO-7ZDZ54Cd-6FMlQx.xxxxxUC1qh-IYzh7dU-OJsrqdX.-t 2.2070.00https://www.weddingslinen.com/pp_confirm.phphttps://www.weddingslinen.com/pp_cancel.phpAuthorization|

Auth Result : AiO-7ZDZ54Cd-6FMlQx.t3KoYY8nAS.-UC1qh-IYzh7dU-OJsrqdX.-t2009-10-14T05:50:04ZSuccessca5ff8e14a1fc2.201077585EC-5T894573LK186352R|

Get Request :xxxxxx_api1.axxxn.com4QBQBxxxxxSV7MAiO-7ZDZ54Cd-6FMlQx.xxxxxUC1qh-IYzh7dU-OJsrqdX.-t2.20EC-5T894573LK186352R|

Get Result : AiO-7ZDZ54Cd-6FMlQx.t3KoYY8nAS.-UC1qh-IYzh7dU-OJsrqdX.-t2009-10-14T05:50:22ZSuccessa6ef427489732.201077585EC-5T894573LK186352Rangelchaircover@gmail.com9RSGD8Y86SGNYverifiedHuiZiWuUSAngel Chair Cover
Angel Chair Cover3439 Cast palm Dr.BufordGAUSUnited States30519PayPalConfirmed
|

Process : |

Process Result : |
-------------------------------------------------------------------------------------









My WA_Globals.php is:

-------------------------------------------------------------------------------------
<?php
$WAGLOBAL_Root_URL = "https://www.weddingslinen.com/" ;
$WAGLOBAL_Site_Name = "Wedding's Linen" ;
$WAGLOBAL_Address = "8652 23rd Avenue";
$WAGLOBAL_City = "Brooklyn";
$WAGLOBAL_State = "NY";
$WAGLOBAL_Zip = "11214";
$WAGLOBAL_Country = "USA";
$WAGLOBAL_GoogleAPIKey = "ABQIAAAAmAufxgMhlI8uwMbRaJ6-hBSiBpXtvRdE2Sjsaf95GZFVZS0eVxTQzEUWM23S41pLP-v1PovtCAvpPw";
$WAGLOBAL_localRoot = "/";
$WAGLOBAL_remoteRoot = "/weddingslinen.com/";

/* Shipping Settings */
$WAGLOBAL_Shipping_Enabled = true; //set to true if you intend to use shipping rate lookup.

/*Shipping Settings Key:
* Use this key to determine the appropriate value for the $WAGLOBAL_Shipping setting:
* UPS = 1
* FedEx = 2
* USPS = 3
*/
$WAGLOBAL_Shipping = 3; //Enter the appropriate value based on the Shipping Setings Key above. UPS is specified by default.

//Only complete the shipping options for the shipping provider you have selected to use in the $WAGLOBAL_Shipping setting.

//UPS Shipping Settings:
$WAGLOBAL_UPS_Account = "";
$WAGLOBAL_UPS_Password = "";
$WAGLOBAL_UPS_AccessKey = "";
$WAGLOBAL_UPS_ShipperNo = "";
$WAGLOBAL_UPS_ShipType = ""; //Enter the appropriate value for domestic shipping, based on the UPS Shipping key at the bottom of this page.
$WAGLOBAL_UPS_IntShipType = ""; //Enter the appropriate value for shipping to international customers, based on the UPS Shipping key at the bottom of this page.

//FedEx Shipping Settings:
$WAGLOBAL_FedEx_Account = "";
$WAGLOBAL_FedEx_Meter = "";
$WAGLOBAL_FedEx_ShipType = ""; //Enter the appropriate value for domestic shipping, based on the FedEx Shipping key at the bottom of this page.
$WAGLOBAL_FedEx_IntShipType = ""; //Enter the appropriate code for shipping to international customers, based on the FedEx Shipping key at the bottom of this page.

// USPS Shipping Settings
$WAGLOBAL_USPS_User = "779WEDDI6754"; // get this when you sign up for API access
$WAGLOBAL_USPS_Server = "https://secure.shippingapis.com/ShippingAPI.dll"; // change this to the live server when you go live
$WAGLOBAL_USPS_ShipType = "PRIORITY"; //Enter the appropriate value for domestic shipping, based on the USPS Shipping key at the bottom of this page.
$WAGLOBAL_USPS_IntShipType = "Airmail Parcel Post"; //Enter the appropriate value for shipping to international customers, based on the USPS Shipping key at the bottom of this page.


/* Payment Settings
* Use this key to determine the appropriate value for the $WAGLOBAL_Gateway setting:
* PayPal = 1
* Authorize.net = 2
*/
$WAGLOBAL_Gateway = 1; //Enter the appropriate value based on the above key. PayPal is specified by default.
$WAGLOBAL_Test_Mode = false; //Set to true if you are testing your shopping cart and do not want to send information to your payment gateway.

//Only complete the payment gateway options for the gateway you have selected to use in the $WAGLOBAL_Gateway setting.

//PayPal Settings
$WAGLOBAL_Paypal_Sandbox = "false"; //Set to true if you wish to use the PayPal Sandbox for testing transactions.
$WAGLOBAL_Paypal_User = "xxxxxxxx";
$WAGLOBAL_Paypal_Password = "xxxxxxxxx";
$WAGLOBAL_Paypal_Signature = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";

//Authorize.net Settings
$WAGLOBAL_Authnet_Sandbox = "false"; //Set to true if you wish to use the Authorize.net Sandbox for testing transactions.
$WAGLOBAL_Authnet_login = "";
$WAGLOBAL_Authnet_tran_key = "";

// Tax Setting
$WAGLOBAL_TaxRate = 0;
$WAGLOBAL_TaxState = "";

// CAPTCHA Settings
$WAGLOBAL_Captcha_Width = "255" ;
$WAGLOBAL_Captcha_Height = "40" ;
$WAGLOBAL_Captcha_Characters = "5" ;
$WAGLOBAL_Captcha_Font = "Fonts/MOM_T___.TTF" ;
$WAGLOBAL_Captcha_BG = "F0F0F0" ;
$WAGLOBAL_Captcha_Noise = "F0F0F0" ;
$WAGLOBAL_Captcha_Text = "000000" ;
$WAGLOBAL_Captcha_BG_transparent = "0" ;

// Email Settings
$WAGLOBAL_Email_Server = "gmail.com" ;
// Contact Page
$WAGLOBAL_Contact_Email_Subject = "" ;
$WAGLOBAL_Contact_Email_To = "weddingslinen@gmail.com" ;
$WAGLOBAL_Contact_Email_CC = "" ;
$WAGLOBAL_Contact_Email_BCC = "" ;
// Email Verification
$WAGLOBAL_Verification_Email_Subject = "" ;
$WAGLOBAL_Verification_Email_FROM = "weddingslinen@gmail.com" ;
$WAGLOBAL_Verification_Email_CC = "" ;
$WAGLOBAL_Verification_Email_BCC = "" ;
// Registration
$WAGLOBAL_Registration_Email_Subject = "Welcome to our site" ;
$WAGLOBAL_Registration_Email_FROM = "weddingslinen@gmail.com" ;
$WAGLOBAL_Registration_Email_CC = "" ;
$WAGLOBAL_Registration_Email_BCC = "" ;
// Lost Password
$WAGLOBAL_Password_Email_Subject = "Your ".$WAGLOBAL_Site_Name." login information" ;
$WAGLOBAL_Password_Email_FROM = "weddingslinen@gmail.com" ;
$WAGLOBAL_Password_Email_CC = "" ;
$WAGLOBAL_Password_Email_BCC = "" ;
// Payment Receipt
$WAGLOBAL_Receipt_Email_Subject = "Order Receipt" ;
$WAGLOBAL_Receipt_Email_FROM = "weddingslinen@gmail.com" ;
$WAGLOBAL_Receipt_Email_CC = "" ;
$WAGLOBAL_Receipt_Email_BCC = "" ;
// Shipping Confirmation
$WAGLOBAL_Shipping_Confirm_Email_Subject = "Shipping Confirmation" ;
$WAGLOBAL_Shipping_Confirm_Email_FROM = "weddingslinen@gmail.com" ;
$WAGLOBAL_Shipping_Confirm_Email_CC = "" ;
$WAGLOBAL_Shipping_Confirm_Email_BCC = "" ;

// Admin Settings
$WAGLOBAL_Admin_UserName = "xxxxxxxxx" ;
$WAGLOBAL_Admin_Password = "xxxxxxx" ;
?>
<?php
-------------------------------------------------------------------------------------

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...