PHP: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(init) |
K (init) |
||
Zeile 1: | Zeile 1: | ||
www.php.net | www.php.net | ||
<br> | |||
= Config = | |||
<source lang="apache">#/etc/php5/apache2/php.ini | |||
disable_functions = symlink,exec,system,passthru,shell_exec,escapeshellcmd,proc_open,proc_nice,ini_restore | |||
;#popen needed for cacti | |||
expose_php = Off | |||
memory_limit = 320M | |||
include_path = ".:/usr/share/php" | |||
upload_max_filesize = 10M | |||
; Whether to allow the treatment of URLs (like http:// or ftp://) as files. | |||
; http://php.net/allow-url-fopen | |||
allow_url_fopen = Off | |||
upload_tmp_dir =/tmp | |||
; Defines the default timezone used by the date functions | |||
; http://php.net/date.timezone | |||
date.timezone = "Europe/Berlin" | |||
session.hash_function = sha512</source> | |||
[[Category:WWW]] | |||
[[Kategorie:WWW]] | [[Kategorie:WWW]] | ||
[[Kategorie:PHP]] |
Version vom 29. August 2012, 20:27 Uhr
www.php.net
Config
#/etc/php5/apache2/php.ini
disable_functions = symlink,exec,system,passthru,shell_exec,escapeshellcmd,proc_open,proc_nice,ini_restore
;#popen needed for cacti
expose_php = Off
memory_limit = 320M
include_path = ".:/usr/share/php"
upload_max_filesize = 10M
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-fopen
allow_url_fopen = Off
upload_tmp_dir =/tmp
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "Europe/Berlin"
session.hash_function = sha512