diff -r 0bdbde429f77 -r 80cfd6ca244d apache-php/apache-php.ini --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apache-php/apache-php.ini Thu Aug 09 19:06:57 2012 +0200 @@ -0,0 +1,25 @@ +;; +;; apache-php.ini -- PHP Configuration +;; + +[PHP] + +; Resource Limits +register_globals = off ; Global variables are no longer registered for input data +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 = 128M ; Maximum amount of memory a script may consume +post_max_size = 16M ; Maximum amount of POST data accepted +realpath_cache_size = 256K ; Maximum size of realpath(2) cache +realpath_cache_ttl = 120 ; Duration of time (in seconds) to cache realpath(2) information +date.timezone = "UTC" ; The timezone for date calculations + +; Include Paths +include_path = ".:@l_prefix@/lib/php" + +; Session Paths +session.save_path = "@l_prefix@/var/apache/run/apache-php.session" +