From: Zeev Suraski Date: Mon, 26 Jun 2000 18:16:54 +0000 (+0000) Subject: Add missing enable_dl X-Git-Tag: php-4.0.1RC2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c94141b122827e1b8c7b4ea6e272905e0bdef10;p=php Add missing enable_dl --- 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. ;;;;;;;;;;;;;;;;;;;;;;