ok, think i found the problem...
on the confirm.php page there is an if statment that triggers the linkpoint api:
if (($_SERVER["REQUEST_METHOD"] == "POST") && (isset($_SERVER["HTTP_REFERER"]) && strpos(urldecode($_SERVER["HTTP_REFERER"]), urldecode($_SERVER["SERVER_NAME"].$_SERVER["PHP_SELF"])) > 0) && isset($_POST)) {
... lots of lp code ...
$WAGatewayResponse = LinkPointAPI_Post($LinkPointAPI_required,$LinkPointAPI_itemized,$LinkPointAPI_optional);
echo $WAGatewayResponse;
if ($WAGatewayResponse) {
$FS2010->redirStr = "checkout_success.php";
}
else if ("checkout_failure.php" != "") {
header("Location: ". "checkout_failure.php");
exit();
}
}
the page that keeps show on my end is: checkout_failure.php
how can i test to see why it keeps going to the else if?