You can set up your php.ini file to log all startup and run-time errors to a log file or syslog. This has helped me many times find errors that were not being displayed.
Look for these items: display_errors = Off display_startup_errors = Off log_errors = On display_errors = Off error_log = /var/log/php.log Notice here that I have all the errors being logged in a file /var/log/php.log. So no errors will be printed by the browser however, I can view them in the log file. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -----Original Message----- > From: Nicolas [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 02, 2002 4:35 AM > To: [EMAIL PROTECTED] > Subject: [PHP-INST] My browser display only a blank page... > > > Hello, > I've read the FAQ, the manuals of php and apache but doesn't > find anything. Here is my problem : I've installed suse 7.2 > with apache 1.3.19-48, php 4.0.4 and mysql 3.23.37-8. The > file http.conf contains the lines loadmodule and addmodule > for php and the lines with addtype application/... When I > connect with Konqueror to localhost It display the index.html > file wich say apache configured with php, ssl and perl. But > when I try to open a file like trial.php3 it displays a blank > page. If I would see the source code I can find my php code. > > More strange, when I made a .php3 file containing html text, > the html text appears in konqueror but not in netscape!?! > Konqueror could open files like .php3 or .php4 but not .php. > Apparently my apache server is well configured so I don't > understand where is the problem > > > > -- > PHP Install Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php >