close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

PayPal & Coupon

Thread began 2/17/2011 8:35 pm by mr. graphic | Last modified 2/23/2011 8:41 am by Jason Byrnes | 2518 views | 6 replies |

mr. graphic

PayPal & Coupon

I had this product for over a year and it seems that it has so many bugs that I seem to find myself using the the free oscommerce product for most of my clients, but I really want to use and I keep thinking maybe it is me.

I have two different stores (different owners, different PayPal Admin account, etc.) that are getting the same message now, when I try to buy something using a small amount 2.99 or 4.99, they are both coming with same error back from paypal.

Transaction Not Completed
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 <http://websitename/checkout.php> and try again

keep in mind, I tried using 4 different paypal accounts that I have when testing for clients,

I tried troubleshooting this..

1- I thought maybe PayPal locked my IP, but I had another client try it from their home and THEY got the same message.

2- Keep in mind, the information in the PayPal Admin setting for either of them is correct, since when I click on checkout, I see the owners name and the amount and the detail, etc. and then I log-in the Paypal accounts to use, it shows everything, it is only upon "continue"...

Also I know with the Free OsCommerce, I can do coupon for shipping, but correct me if I am wrong, it does not seem possible from reading your forum that I can do it in PS3

Please advice on all.

Sign in to reply to this post

mr. graphic

PayPal Issue

I think I found out that the problem with PayPal has to either do with that your store I have to put in a weight (I did not since I was testing it) or a minimum purchase.
Please advice on this issue..

Also please advice on Shipping Coupon

Sign in to reply to this post

mr. graphic

PayPal Issue

It seems that with the other store no matter what the issue is the same, it keeps declining.

Also on the second store when it takes me to PayPal, it does not have any description on the left side, all it says, you will get a detailed description once you go back to the store.. (this is the one that the transaction keeps declining).

Why does one store show detail when it takes me to the PayPal log-in and the other has nothing, not even a price on the left, but a price on the right when you are about to submit.

Please advice..

Sign in to reply to this post

Jason ByrnesWebAssist

if you have shipping lookup enabled, you will need to specify a weight for the tiems, the shipping lookup is based on the cart weight.


to determiune the cause of the transaction failure, add the following code the checkout failure page:

php:
<?php  

 
if(!session_id()) session_start(); 
 if(
$WAGLOBAL_Gateway == ) { 
     echo 
"<p>Direct Pay: <br />"
     echo 
"Full Request: ".(isset($_SESSION["PP_DirectPayment_postedValues"])?htmlentities($_SESSION["PP_DirectPayment_postedValues"]):"n/a")."<br />";  
     echo 
"Full Response: ".(isset($_SESSION["PP_DirectPayment"])?htmlentities($_SESSION["PP_DirectPayment"]):"n/a")."<br /></p>";  
     echo 
"<p>Express Authorize <br />"
     echo 
"Full Request: ".(isset($_SESSION["ECO_Auth_Request"])?htmlentities($_SESSION["ECO_Auth_Request"]):"n/a")."<br />"
     echo 
"Full Response: ".(isset($_SESSION["ECO_Auth_Result"])?htmlentities($_SESSION["ECO_Auth_Result"]):"n/a")."<br />"
     echo 
"<p>Express Process: <br />"
     echo 
"Full Request: ".(isset($_SESSION["ECO_Process_Request"])?htmlentities($_SESSION["ECO_Process_Request"]):"n/a")."<br />"
     echo 
"Full Response: ".(isset($_SESSION["ECO_Process_Result"])?htmlentities($_SESSION["ECO_Process_Result"]):"n/a")."<br /></p>"
 } 
  
 if(
$WAGLOBAL_Gateway == 2) { 
     echo 
"<p>Auth Net: <br />"
     echo 
"Full Request: ".(isset($_SESSION['WAAuthNet_postedValues'])?htmlentities($_SESSION['WAAuthNet_postedValues']):"n/a")."<br />"
     echo 
"Full Response: ".(isset($_SESSION['WAAuthNet'])?htmlentities($_SESSION['WAAuthNet']):"n/a")."<br /></p>"
 } 
  
  if(
$WAGLOBAL_Gateway == ) { 
     echo 
"<p>Express Authorize: <br />"
     echo 
"Full Request: ".(isset($_SESSION["ECO_Auth_Request"])?htmlentities($_SESSION["ECO_Auth_Request"]):"n/a")."<br />"
     echo 
"Full Response: ".(isset($_SESSION["ECO_Auth_Result"])?htmlentities($_SESSION["ECO_Auth_Result"]):"n/a")."<br /></p>"
     echo 
"<p>Express Process: <br />"
     echo 
"Full Request: ".(isset($_SESSION["ECO_Process_Request"])?htmlentities($_SESSION["ECO_Process_Request"]):"n/a")."<br />"
     echo 
"Full Response: ".(isset($_SESSION["ECO_Process_Result"])?htmlentities($_SESSION["ECO_Process_Result"]):"n/a")."<br /></p>"
  } 
   
 if(
$WAGLOBAL_Shipping == 1) { 
     echo 
"<p>UPS: <br />"
     echo 
"Full Request: ".(isset($_SESSION["WA_Store_Cart_UPS_FullRequest"])?htmlentities($_SESSION["WA_Store_Cart_UPS_FullRequest"]):"n/a")."<br />";  
     echo 
"Full Response: ".(isset($_SESSION["WA_Store_Cart_UPS_FullResponse"])?htmlentities($_SESSION["WA_Store_Cart_UPS_FullResponse"]):"n/a")."<br /></p>";  
 } 
 if(
$WAGLOBAL_Shipping == 2) { 
     echo 
"<p>FedEX: <br />"
     echo 
"Full Request: ".(isset($_SESSION["WA_Store_Cart_FedEx_FullRequest"])?htmlentities($_SESSION["WA_Store_Cart_FedEx_FullRequest"]):"n/a")."<br />";  
     echo 
"Full Response: ".(isset($_SESSION["WA_Store_Cart_FedEx_FullResponse"])?htmlentities($_SESSION["WA_Store_Cart_FedEx_FullResponse"]):"n/a")."<br /></p>";  
 } 
 if(
$WAGLOBAL_Shipping == 3) { 
     echo 
"<p>USPS: <br />"
     echo 
"Full Request: ".(isset($_SESSION["WA_Store_Cart_USPS_FullRequest"])?htmlentities($_SESSION["WA_Store_Cart_USPS_FullRequest"]):"n/a")."<br />";  
     echo 
"Full Response: ".(isset($_SESSION["WA_Store_Cart_USPS_FullResponse"])?htmlentities($_SESSION["WA_Store_Cart_USPS_FullResponse"]):"n/a")."<br /></p>";  
 } 
?>




this will write the full request and full response from the payment gateway to help us see why the transaction is failing.

Please note:
the full request and response will contain sensitive information that should be removed before posting here.


No, power store 3 does not offer support for a shipping coupon.

Sign in to reply to this post

mr. graphic

PayPal

I tried placing the code but there were so many errors upon checkout, Maybe you should tell me where you would like me where exactly to place it within the page.

Also you never addressed the issue about detail upon checkout.

see, sassy how it describes (how it should be) and Ad America it does not have any description.

These are probably things I should have addressed over a year ago when I purchased it, but I really want to start using this product this time and have this script as one of the options.

If you want to try checking out, test it here:
Products_Detail.php?ProductID=22

Sign in to reply to this post

mr. graphic

Still Waiting

I am still waiting what I posted few days ago, here it is again...

I tried placing the code but there were so many errors upon checkout, Maybe you should tell me where you would like me where exactly to place it within the page.

Also you never addressed the issue about detail upon checkout.

see, sassy how it describes (how it should be) and Ad America it does not have any description.

These are probably things I should have addressed over a year ago when I purchased it, but I really want to start using this product this time and have this script as one of the options.

If you want to try checking out, test it here:
Products...p?ProductID=22

Sign in to reply to this post

Jason ByrnesWebAssist

I have created a support ticket so we can look into this issue further.

To view and edit your support ticket, please log into your support history:
supporthistory.php

Sign in to reply to this post

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...