| 1234567891011121314151617181920212223 |
- ;;
- ;; apache-php.ini -- PHP Configuration
- ;;
- [PHP]
- ; Resource Limits
- register_globals = off ; Global variables are no longer registered for input data
- safe_mode = on ; Enable Safe Mode (file UID comparisons)
- safe_mode_gid = off ; Whether to relax Safe Mode to file GID comparisons
- allow_url_fopen = off ; Disable the opening of remote URLs
- display_errors = off ; Errors will NOT be displayed
- log_errors = on ; Errors will be logged
- max_execution_time = 60 ; Maximum execution time of each script, in seconds
- max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
- memory_limit = 8M ; Maximum amount of memory a script may consume
- post_max_size = 8M ; Maximum amount of POST data accepted
- ; Include Paths
- include_path = ".:@l_prefix@/lib/php"
- safe_mode_include_dir = "@l_prefix@/lib/php"
|