Tue, 28 Aug 2012 18:29:30 +0200
Update from Drupal 6.x to 7.x and introduce several new HTML5 themes. Because
many themes from Drupal 6.x have since been abandoned, left unmaintained, or
not ported to Drupal 7.x, this package has changed in size and utility.
michael@503 | 1 | ;; |
michael@503 | 2 | ;; apache-php.ini -- PHP Configuration |
michael@503 | 3 | ;; |
michael@503 | 4 | |
michael@503 | 5 | [PHP] |
michael@503 | 6 | |
michael@503 | 7 | ; Resource Limits |
michael@503 | 8 | register_globals = off ; Global variables are no longer registered for input data |
michael@503 | 9 | allow_url_fopen = off ; Disable the opening of remote URLs |
michael@503 | 10 | display_errors = off ; Errors will NOT be displayed |
michael@503 | 11 | log_errors = on ; Errors will be logged |
michael@503 | 12 | max_execution_time = 60 ; Maximum execution time of each script, in seconds |
michael@503 | 13 | max_input_time = 60 ; Maximum amount of time each script may spend parsing request data |
michael@503 | 14 | memory_limit = 128M ; Maximum amount of memory a script may consume |
michael@503 | 15 | post_max_size = 16M ; Maximum amount of POST data accepted |
michael@503 | 16 | realpath_cache_size = 256K ; Maximum size of realpath(2) cache |
michael@503 | 17 | realpath_cache_ttl = 120 ; Duration of time (in seconds) to cache realpath(2) information |
michael@503 | 18 | date.timezone = "UTC" ; The timezone for date calculations |
michael@503 | 19 | |
michael@503 | 20 | ; Include Paths |
michael@503 | 21 | include_path = ".:@l_prefix@/lib/php" |
michael@503 | 22 | |
michael@503 | 23 | ; Session Paths |
michael@503 | 24 | session.save_path = "@l_prefix@/var/apache/run/apache-php.session" |
michael@503 | 25 |