php.ini Template
For development, not production
; Disallow the use of <? as an opening PHP tag
short_open_tag = Off
; Disallow the use of ASP-like (<% %>) PHP tags
asp_tags = Off
; Keep safe mode turned off
safe_mode = Off
; Keep the maximum execution time low
max_execution_time = 10
; Keep the maximum memory usage low
memory_limit = 8M
; Use strict error reporting
error_reporting = E_STRICT
; Display errors directly to standard out
display_errors = On
; Do not log errors, since we have display_errors on
log_errors = Off
; Keep register globals off
register_globals = Off
register_long_arrays = Off
register_argc_argv = Off
magic_quotes_gpc = Off