
Originally Posted by
stevesh
As the error message says, the problem is on line 53 of flatwest.php. Check that file around that area and compare lines 50-56 or so (text editors don't always number lines the same) to the same lines of the original flat.php.
I just went through the same problem. I coulden't get PHP to output an error but in my experience usually a blank screen in zen cart means that you are trying to output some text before zen cart is outputting headers. Somewhere.
I made a custom shipping module. I wanted to get the id of the logged in customer at one point and for troubleshooting had a line like this in there.
Code:
echo $_SESSION['customer_id'] ;
well it was outputting the customer id just like I intended it too. But the shipping module was loading before any zen cart template files were and therefor before the headers. Causing php to die and not execute anything past the echo.
Simply commenting out the echo fixed my problem.