summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-06-26 18:16:54 +0000
committerZeev Suraski <zeev@php.net>2000-06-26 18:16:54 +0000
commit2c94141b122827e1b8c7b4ea6e272905e0bdef10 (patch)
tree36c152d99eaf958f2a18a2354418466e83ba2306 /php.ini-dist
parentcacbf1ea28db39a95ba515f3f3ee70b0f28b1197 (diff)
downloadphp-git-2c94141b122827e1b8c7b4ea6e272905e0bdef10.tar.gz
Add missing enable_dl
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist5
1 files changed, 5 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index ad93fe1926..a1597694b7 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -28,6 +28,7 @@
; | bitwise OR
; & bitwise AND
; ~ bitwise NOT
+; ! boolean NOT
;
; Boolean flags can be turned on using the values 1, On, True or Yes.
; They can be turned off using the values 0, Off, False or No.
@@ -217,6 +218,10 @@ user_dir = ; the directory under which php opens the script using /~usernam
;upload_tmp_dir = ; temporary directory for HTTP uploaded files (will use system default if not specified)
upload_max_filesize = 2097152 ; 2 Meg default limit on file uploads
extension_dir = ./ ; directory in which the loadable extensions (modules) reside
+enable_dl = On ; Whether or not to enable the dl() function.
+ ; The dl() function does NOT properly work in multithreaded
+ ; servers, such as IIS or Zeus, and is automatically disabled
+ ; on them.
;;;;;;;;;;;;;;;;;;;;;;