please be patient, we are available from 9am - 5pm Eastern Standard Time, Monday - Friday.
on the confirm page, there are 2 cart objects attached, but only one is being used.
find and delete the following 2 code blocks:
<?php
//WA eCart Include
require_once("WA_eCart/razorcart1_PHP.php");
?>
<?php
$razorcart1->GetContent();
?>
to troubleshoot the PayPal button, add the following code to the pp_checkout_failure.php page:
<?php
@session_start();
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>";
?>
this will write the full request going to and the full response coming back from paypal to the screen.
NOTE: the full request and response will contain sensitive information that should be removed before posting here.