This is cross posted in another section of the forum. If cross posting is a no no, please let me know. Thanks.
Ok. Moved my site from on host to another, and now I'm having problems with any page that I use require, include, reguire_once or include_once. Here's an example:
<?
echo "testing<br>";
//include config file
require_once('/includes/config.php');
echo " tesing again...";
?>
I'd expect to see:
testing...
testing again...
Instead I see nothing. Not even the first echo. The whole script just craps out if I use that function. This is happening on all my pages. What gives? What should I look for, and what can I do to work around? I tried this to see if maybe it just wasn't seeing the files
require_once('/includes/config.php') or die("couldn't find config.php");
but I still got nothing. Thanks for any help...