Thanks for the replies, guys. I'm pretty dissapointed and pissed at this point because half of my scripts fail for some reason or other on the CGI server, gonna have to spend some quality time troubleshooting, and here I thought I was almost done!
One bizarre problem I have yet to figure out (of course I havent really looked into it or Googled it yet) is the fact that my includes are failing. I have one 'master' include file called 'all_func.php' that has three entries of other included files within. When I include that file, it works fine, but the includes within it fail. Example:
PHP Code:
<?
// somescript.php
include("./inc/all_func.php"); // works, but in itself fails and issues an error
include("./inc/header.php"); // works
echo 'somescript';
include("./inc/footer.php"); // works
?>
PHP Code:
<?
// all_func.php - 'master include'
include("db_func.php"); // fails
include("misc_func.php"); // fails
?>
Other weirdness includes the fact that I'm getting index errors pertaining to $HTTP_POST_VARS['somevalue'], which never happened until I changed over to this old version. They do have register_globals
on so I can't see where I'm losing any vars that way...
