diff options
| author | Zeev Suraski <zeev@php.net> | 2000-06-26 18:16:54 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-06-26 18:16:54 +0000 |
| commit | 2c94141b122827e1b8c7b4ea6e272905e0bdef10 (patch) | |
| tree | 36c152d99eaf958f2a18a2354418466e83ba2306 | |
| parent | cacbf1ea28db39a95ba515f3f3ee70b0f28b1197 (diff) | |
| download | php-git-2c94141b122827e1b8c7b4ea6e272905e0bdef10.tar.gz | |
Add missing enable_dl
| -rw-r--r-- | php.ini-dist | 5 | ||||
| -rw-r--r-- | php.ini-optimized | 4 | ||||
| -rw-r--r-- | php.ini-recommended | 4 |
3 files changed, 13 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. ;;;;;;;;;;;;;;;;;;;;;; diff --git a/php.ini-optimized b/php.ini-optimized index 0dc78b5d3b..2321976fff 100644 --- a/php.ini-optimized +++ b/php.ini-optimized @@ -205,6 +205,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. ;;;;;;;;;;;;;;;;;;;;;; diff --git a/php.ini-recommended b/php.ini-recommended index 0dc78b5d3b..2321976fff 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -205,6 +205,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. ;;;;;;;;;;;;;;;;;;;;;; |
