php.ini 847 B

12345678910111213141516171819202122
  1. ;;
  2. ;; php.ini -- PHP Configuration
  3. ;;
  4. [PHP]
  5. ; Resource Limits
  6. register_globals = off ; Global variables are no longer registered for input data
  7. safe_mode = on ; Enable Safe Mode (file UID comparisons)
  8. safe_mode_gid = off ; Whether to relax Safe Mode to file GID comparisons
  9. display_errors = off ; Errors will NOT be displayed
  10. log_errors = on ; Errors will be logged
  11. max_execution_time = 60 ; Maximum execution time of each script, in seconds
  12. max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
  13. memory_limit = 8M ; Maximum amount of memory a script may consume
  14. post_max_size = 8M ; Maximum amount of POST data accepted
  15. ; Include Paths
  16. include_path = ".:@l_prefix@/lib/php"
  17. safe_mode_include_dir = "@l_prefix@/lib/php"