Forum Moderators: coopster
Furthermore, even a simple include "file.php" does not work. No error, no included file. Nada.
However, php is installed and "working". echo "hello" does work.
a blank page is displayed.
It is a nice feature not to show internal error information and leak out sensitive information (like local paths, etc) to public users.
However, you should find all errors being recorded in the webserver's 'error_log'.
Kind regards,
R.
[edited by: Romeo at 1:59 pm (utc) on July 28, 2006]
Indeed. Try replacing your current php.ini file with the recommended one that came with php.
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below). Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = Off