From: Jost B. <jos...@ya...> - 2005-10-10 18:50:05
|
Hi, > my version of PHP I get a blank page returned? recent versions of php have error reporting switched off. Another reason might be that your version of php is not a cgi but a cli binary (this happens if you compile for apache for example). The usual to debug these problems is to call php via strace. Please rename the cgi/php into cgi/php.bin and create a file cgi/php with the following content: #!/bin/sh strace -s160 /path/to/your/php/cgi/binary 2>/tmp/error.log and make it executable with the command: chmod +x cgi/php In the /tmp/error.log one should see the error message as well as the location of the php.ini file that is used. Regards, Jost Boekemeier ___________________________________________________________ Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de |