make sure you have the following code just before the doctype tag.
<?php
// WA eCart Redirect
if ($ecoCart_PHP->redirStr != "") {
header("Location: ".$ecoCart_PHP->redirStr);
}
?>
if it still doesn't work, there may be a php error occuring, add the following at line 1 to turn error reporting on:
<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>

