Good day,
I am working on atomizing a template creating includes in a sub-directory called includes and calling them like this
<?php include 'includes/head.php'; ?>
I have also tried
<?php include('includes/head.php'); ?>
My page won't load. All I get is a blank browser window. I tried tailing the error.log and nothing is appearing there.
Googling the issue, I have come across this challenge some had on network servers after upgrading from PHP 4 to 5 and Zend optimizer. My server isn't complex as it is only a development environment.
Has anyone else had a similar issue and can offer a solution?