php/php.ini

changeset 582
9c58eae06c45
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/php/php.ini	Tue Aug 28 18:37:15 2012 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +;;
     1.5 +;;  php.ini -- PHP Configuration
     1.6 +;;
     1.7 +
     1.8 +[PHP]
     1.9 +
    1.10 +;   Resource Limits
    1.11 +register_globals      = off    ; Global variables are no longer registered for input data
    1.12 +allow_url_fopen       = off    ; Disable the opening of remote URLs
    1.13 +display_errors        = off    ; Errors will NOT be displayed
    1.14 +log_errors            = on     ; Errors will be logged
    1.15 +max_execution_time    = 60     ; Maximum execution time of each script, in seconds
    1.16 +max_input_time        = 60     ; Maximum amount of time each script may spend parsing request data
    1.17 +memory_limit          = 128M   ; Maximum amount of memory a script may consume
    1.18 +post_max_size         = 16M    ; Maximum amount of POST data accepted
    1.19 +realpath_cache_size   = 256K   ; Maximum size of realpath(2) cache
    1.20 +realpath_cache_ttl    = 120    ; Duration of time (in seconds) to cache realpath(2) information
    1.21 +date.timezone         = "UTC"  ; The timezone for date calculations
    1.22 +
    1.23 +;   Include Paths
    1.24 +include_path          = ".:@l_prefix@/lib/php"
    1.25 +

mercurial