apache-php/apache-php.ini

Tue, 28 Aug 2012 18:28:45 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 18:28:45 +0200
changeset 528
3b08e6396b45
permissions
-rw-r--r--

Massively update from 5.1 to 5.5 release, completely changing from
autotools to cmake build configuration along with the corresponding
corrections. Correct some less important problems like typical german
english mistakes, as well as use parallel make for faster builds with
SMP and multicore architectures. Warning, the 5.5 releases of MySQL
seem to be equally bug ridden as the 5.1 are, for example building
the NDBCluster storage engine fails.

     1 ;;
     2 ;;  apache-php.ini -- PHP Configuration
     3 ;;
     5 [PHP]
     7 ;   Resource Limits
     8 register_globals      = off    ; Global variables are no longer registered for input data
     9 allow_url_fopen       = off    ; Disable the opening of remote URLs
    10 display_errors        = off    ; Errors will NOT be displayed
    11 log_errors            = on     ; Errors will be logged
    12 max_execution_time    = 60     ; Maximum execution time of each script, in seconds
    13 max_input_time        = 60     ; Maximum amount of time each script may spend parsing request data
    14 memory_limit          = 128M   ; Maximum amount of memory a script may consume
    15 post_max_size         = 16M    ; Maximum amount of POST data accepted
    16 realpath_cache_size   = 256K   ; Maximum size of realpath(2) cache
    17 realpath_cache_ttl    = 120    ; Duration of time (in seconds) to cache realpath(2) information
    18 date.timezone         = "UTC"  ; The timezone for date calculations
    20 ;   Include Paths
    21 include_path          = ".:@l_prefix@/lib/php"
    23 ;   Session Paths
    24 session.save_path     = "@l_prefix@/var/apache/run/apache-php.session"

mercurial