Enabled error reporting...
It has something to do with the eCart redirect it looks like.
PHP reports an error on line 11:
Fatal error: Call to a member function GetContent() on a non-object in C:\Apache\htdocs\houstonWood\productsResults.php on line 11
Which references this bit of code:
<?php
$houstonWood->GetContent();
?>
If you remove those lines if references line 150:
Notice: Trying to get property of non-object in C:\Apache\htdocs\houstonWood\productsResults.php on line 150
Which references this code:
<?php
// WA eCart Redirect
if ($houstonWood->redirStr != "") {
header("Location: ".$houstonWood->redirStr);
}
?>
Any ideas?