#------------------------------------------------------------------------------ # /etc/default.d/apache2_php5 - configuration for apache2_php5 # # Copyright (c) 2005 Fabian Wolter # Copyright (c) 2006 Marc Ulfig # # Creation: 2004-01-06 fw # Last Update: 2006-03-24 mou # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # General Settings #------------------------------------------------------------------------------ PHP5_SAFE_MODE='no' # Switch safemode # yes=ON / no=OFF (default) PHP5_MAX_EXECUTION_TIME='30' # Time in sec. until the script will be terminated # default: 30 PHP5_DISPLAY_ERRORS='yes' # Show syntaxerrors of your PHP-Scripts in Browser # yes=ON (default) / no=OFF PHP5_LOG_ERROR='no' # Write Error to an logfile # yes=ON / no=OFF (default) PHP5_INCLUDE_PATH='/usr/local/lib/php5' # Path were include files are located # default: "/usr/local/lib/php5" PHP5_REGISTER_GLOBALS='no' # Fixes some errors with some old scripts # BUT it is strongly recommed to disable this! # SECURITY REASONS!!! # (use $_POST[] and $_GET[] varables) # yes=ON / no=OFF (default) PHP5_EXTENSION_DIR='/usr/lib/php5/extensions' # Where to find the extensions for PHP # default: "/usr/lib/php5/extensions" PHP5_SENDMAIL_PATH='' # Here you can change your path to sendmail # if needed. # default: empty (this will use the deafult one) PHP5_SENDMAIL_APP='' # Enter additional command that needed to run # sendmail correctly. # default: empty (this will use the deafult one) #------------------------------------------------------------------------------ # Info Settings #------------------------------------------------------------------------------ PHP5_INFO='no' # Puts some PHP-Scripts in your htdocs-dir # for testing functionallity for php,gd,pdflib #------------------------------------------------------------------------------ # Memory Settings #------------------------------------------------------------------------------ PHP5_MAX_POST_SIZE='8M' # Maximal POST size # If you use the POST-Method for uploads this value # must be bigger/equal than PHP5_MAX_UPLOAD_FILESIZE # default: 8M --> meens 8 Magabytes PHP5_MAX_UPLOAD_FILESIZE='2M' # Max. filesize for uploads # default: 2M --> meens 2 Megabytes PHP5_MEMORY_LIMIT='8M' # Memory, PHP is allowed to use # default: 8M --> meens 8 Megabytes PHP5_UPLOAD_DIR='/tmp' # Where to temporary save uploaded file # default: /tmp #------------------------------------------------------------------------------ # EXTENSION CONFIGURATION #------------------------------------------------------------------------------ PHP5_EXT_MYSQL='no' # include MySQL extension in PHP PHP5_EXT_MSSQL='no' # include msSQL extension in PHP PHP5_EXT_PGSQL='no' # include PostgreSQL extension in PHP PHP5_EXT_INTER='no' # include INTERBASE extension in PHP #------------------------------------------------------------------------------ # EXPERIMENTAL - Extension #------------------------------------------------------------------------------ PHP5_EXT_ADS='no' # include ADVANTAGE DATABASE SERVER extension in PHP #------------------------------------------------------------------------------ # END #------------------------------------------------------------------------------