mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
config : Documented file_uploads directive
file-upload : <note> Mentioned related directives, such as file_uploads git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@88813 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
11ae94a24a
commit
dcc9565166
2 changed files with 29 additions and 2 deletions
|
@ -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 @@ include_path = ".;c:\php\lib"
|
|||
</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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue