Do you have access to your error logs? If so, go and load the web page once, then, as soon as possible, check the end of the error logs (with unix's tail function if you're on a unix/linux server). There might be a more descriptive error message in there.
Also, you might want to write a simple little script like:
code:
#!/usr/bin/perl
#make sure the line above is the correct path to perl!print "Content-type:text/html\n\n";
print "<table><tr><td align=right>key</td><td>value</td></tr>";
foreach (keys %ENV)
{
print "<tr><td align=right>$_</td><td>$ENV{$_}</td></tr>";
}
print "</table>";
That will print out all the environment variables that the web server provides, and might give us a clue as to what's going on. So go ahead and copy that into a file, call it printenv.pl, and upload it to your server. Let me know when you get it working.
------------------
David Whittaker
http://www.uabcm.com/
http://www.csworkbench.com/