From dcc9565166d5b8b4290fc3a2d757ea109d91f04c Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Tue, 16 Jul 2002 18:16:01 +0000 Subject: [PATCH] config : Documented file_uploads directive file-upload : Mentioned related directives, such as file_uploads git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88813 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 19 ++++++++++++++++++- features/file-upload.xml | 12 +++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/chapters/config.xml b/chapters/config.xml index 59a2f43d05..f8b681944d 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Configuration @@ -371,6 +371,23 @@ include_path = ".;c:\php\lib" + + + file_uploads + boolean + + + + Whether or not to allow HTTP + file uploads. See also + the + upload_max_filesize, + upload_tmp_dir, and + post_max_size directives. + + + + html_errors diff --git a/features/file-upload.xml b/features/file-upload.xml index 831457ebfd..a6d8632757 100644 --- a/features/file-upload.xml +++ b/features/file-upload.xml @@ -1,5 +1,5 @@ - + Handling file uploads @@ -15,6 +15,16 @@ functions, you have full control over who is allowed to upload and what is to be done with the file once it has been uploaded. + + Related Configurations Note + + See also the file_uploads, + upload_max_filesize, + upload_tmp_dir, and + post_max_size directives + in &php.ini; + + Note that PHP also supports PUT-method file uploads as used by Netscape Composer and W3C's Amaya clients. See the