I redesigned my personal website, and on my test machine, everything works perfectly. However, when I moved it to my live machine, “ONE” of my include statements is not working correctly. The production server is on one of my own computers, and it has the same configuration settings as my production machine. The strangest thing about this is that only one include statement is not working right.
The file I’m trying to include is named: homepage.php.
Here is a sample of the file (index.php) that is performing the include:
<?php
[INDENT].
.lots of things going on here (database queries and such)
.
include "homepage.php";
exit();[/INDENT]
?>
I replaced “homepage.php” above with “photos.php”, and the file was included properly, and every other include statement on the site is working correctly, so I am completely lost as to what the problem could be. Anybody have any ideas?