# PHP error handling for development servers
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
php_flag ignore_repeated_errors off
php_flag ignore_repeated_source off
php_flag report_memleaks on
php_flag track_errors on
php_value docref_root 0
php_value docref_ext 0
php_value error_log /home/path/public_html/domain/PHP_errors.log
# [see footnote 3] # php_value error_reporting 999999999
php_value error_reporting -1
php_value log_errors_max_len 0
Order allow,deny
Deny from all
Satisfy All
In php.ini, at the end:
upload_max_filesize = 8M post_max_size = 16M memory_limit = 24M
Or, in .htaccess, any place.
php_value upload_max_filesize 8M php_value post_max_size 16M php_value memory_limit 24M
upload_max_filesize
post_max_size
max_execution_time
# Custom VH settings (if any exist) # upload_max_filesize = 130M </virtualhost> # END DOMAIN: nerelerden.com ################################################################
|