diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-13 00:09:31 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-13 00:09:31 +0000 |
commit | cae27179ce1f84d47de87c4efbbcbd814f3c7bc6 (patch) | |
tree | ec1b0d87eb57dacc359cef6fe1fc616d9af88e80 /php.ini-recommended | |
parent | e07e515a1b28dd04911ac9d2f1a099efc2d69160 (diff) | |
download | php-git-cae27179ce1f84d47de87c4efbbcbd814f3c7bc6.tar.gz |
fopen wrappers cleanup
- comfiguration is now done by an ini parameter
instead of a compile time option
- the implementations of the three standard wrappers
now live in seperate files in ext/standard
- the compiler is happy again, no more warnings
Diffstat (limited to 'php.ini-recommended')
-rw-r--r-- | php.ini-recommended | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index e882372cca..01f35ca718 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -228,6 +228,12 @@ file_uploads = On ; Whether to allow HTTP file uploads upload_max_filesize = 2M ; Maximum allowed size for uploaded files +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; +allow_url_fopen = On ; Wheter to allow trating URLs like http:... or ftp:... like files + + ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; |