BooHoo!
I guess I will have my work cut out for me! I just got the support ticket from WebQuarry answered, and they said:
It isn’t that it is messed up but that we moved to php5 and it handles includes a little differently.
Specifically, you can’t give external paths like that to an include file anymore. Give a relative path instead.
So include(http://www you could look here.zenfulcreations.com/inc/navigate.php)
would become something like:
include(/inc/navigate.php)Â
This is going to take me quite a while to recode all these pages in my site to use a relative path. Grrrrrr!