php.net is your friend
Just type "http://php.net/" followed by something like a function name
or env var.
http://php.net/error_reporting
Turn on error_reporting in php.ini and your page will not be blank.
You might be using an old script with php5 or newer that use global
variables.
I think you want $_SERVER[ "DOCUMENT_ROOT" ].
Insert a line in front of line 6 something like and look for
DOCUMENT_ROOT which you won't find:
die( "<pre>" . print_r( get_defined_vars( ) , true ) . "</pre>" ) ;
/brad
On Sep 12, 2008, at 9:42 AM, Marc Fromm wrote:
I am setting up a new server. My pages come up blank.
I checked the httpd error log and found this error:
PHP Notice: Undefined variable: DOCUMENT_ROOT in /var/www/html/
studentjobs/index.php on line 6, referer:
Phpinfo on the old (working) server and the new server both report:
DOCUMENT_ROOT /var/www/html
Does DOCUMENT_ROOT need to be defined someplace else?
Thanks
Marc
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server
Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]