philip Tue Jul 16 14:16:02 2002 EDT Modified files: /phpdoc/en/chapters config.xml /phpdoc/en/features file-upload.xml Log: config : Documented file_uploads directive file-upload : <note> Mentioned related directives, such as file_uploads Index: phpdoc/en/chapters/config.xml diff -u phpdoc/en/chapters/config.xml:1.68 phpdoc/en/chapters/config.xml:1.69 --- phpdoc/en/chapters/config.xml:1.68 Sun Jul 14 16:06:55 2002 +++ phpdoc/en/chapters/config.xml Tue Jul 16 14:16:01 2002 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.68 $ --> +<!-- $Revision: 1.69 $ --> <chapter id="configuration"> <title>Configuration</title> @@ -371,6 +371,23 @@ </listitem> </varlistentry> + <varlistentry id="ini.file-uploads"> + <term> + <parameter>file_uploads</parameter> + <type>boolean</type> + </term> + <listitem> + <para> + Whether or not to allow HTTP + <link linkend="features.file-upload">file uploads</link>. See also + the + <link linkend="ini.upload-max-filesize">upload_max_filesize</link>, + <link linkend="ini.upload-tmp-dir">upload_tmp_dir</link>, and + <link linkend="ini.post-max-size">post_max_size</link> directives. + </para> + </listitem> + </varlistentry> + <varlistentry id="ini.html-errors"> <term> <parameter>html_errors</parameter> Index: phpdoc/en/features/file-upload.xml diff -u phpdoc/en/features/file-upload.xml:1.49 phpdoc/en/features/file-upload.xml:1.50 --- phpdoc/en/features/file-upload.xml:1.49 Tue Jul 16 13:56:12 2002 +++ phpdoc/en/features/file-upload.xml Tue Jul 16 14:16:01 2002 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.49 $ --> +<!-- $Revision: 1.50 $ --> <chapter id="features.file-upload"> <title>Handling file uploads</title> @@ -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. </simpara> + <note> + <title>Related Configurations Note</title> + <para> + See also the <link linkend="ini.file-uploads">file_uploads</link>, + <link linkend="ini.upload-max-filesize">upload_max_filesize</link>, + <link linkend="ini.upload-tmp-dir">upload_tmp_dir</link>, and + <link linkend="ini.post-max-size">post_max_size</link> directives + in &php.ini; + </para> + </note> <para> Note that PHP also supports PUT-method file uploads as used by Netscape Composer and W3C's Amaya clients. See the <link
-- PHP Documentation Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php