OK… back to the domain I wanted to really put this on. I got to all steps ok until clicking checkout. It stays on the cart page. I checked the order of the php lines and they were correct and didn't need to be adjusted. I put the error php on checkout page and no errors and it looks accurate. But cart doesn't pass to checkout. Just hangs on cart. See PM for the working page, please.
checkout.php has this
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>
<?php require_once('webassist/framework/framework.php'); ?>
<?php require_once('webassist/framework/library.php'); ?>
<?php require_once("webassist/forms/persist.php"); ?>
<?php require_once("webassist/form_validations/wavt_scripts_php.php"); ?>
<?php require_once("webassist/form_validations/wavt_validatedform_php.php"); ?>
<?php
//WA eCart Include
require_once("WA_eCart/eCart1_PHP.php");
?>
<?php
$eCart1->GetContent();
?>
<?php
if ($eCart1->IsEmpty()) {
$eCart1->redirStr = "cart.php";
$eCart1->cartAction = "RedirectIfEmpty";
}
?>