LoadModule php5_module @CLIENT_BASEDIR@/lib/php/libphp5.so
AddType application/x-httpd-php .php5 .php4 .php3 .phtml .php
AddType application/x-httpd-php-source .phps
# tell PHP, where to look for its php.ini file
PHPINIDir "/etc"
# NOTE: PHP programmers do not know, how to program dynamic
# load of extensions during the runtime in an multithreaded
# environment. So you need to enable all extensions in the
# php.ini file. If you want to avoid trouble and program
# production safe stuff, consider using JAVA instead of PHP!!!
# With Java you even have several options, to debug your code ;-)!
# disallow opening files outside the spedified dir
#php5_admin_value open_basedir @APACI2_BASEDIR@/apache2/
# bypass checking UID/GID webserver vs. file for dir
#php5_admin_value safe_mode_include_dir @APACI2_BASEDIR@/apache2/htdocs/php
# log script errors to servers error log
#php5_admin_value log_errors 1
# DirectoryIndex index.php index.phtml