What is the solution to PHP file upload failure?

爱喝马黛茶的安东尼
Release: 2023-02-25 13:16:02
Original
4711 people have browsed it

What is the solution to PHP file upload failure?

Why does it always fail to upload large files, but there is no problem when uploading small files. The reasons and solutions for PHP large file upload failure are as follows:

Case 1: The temporary directory where the file is stored when uploading the file must be open and a directory writable by the PHP process owner user . If not specified PHP uses the system default.

The upload_tmp_dir in the php.ini file is used to describe the temporary directory where files uploaded by PHP are placed. If you want to upload files, you must ensure that the server has not closed the temporary file and has write permission to the folder.

Case 2: The value of max_execution_time must be large enough. The variable max_execution_time sets the time, measured in seconds, that PHP waits for the script to complete before forcefully terminating it. This variable is useful when the script enters an infinite loop. However, this feature can also cause the operation to fail when there is a legitimate activity that takes a long time to complete (such as uploading a large file). In such cases, you must consider increasing the value of this variable to prevent PHP from shutting down the script when the script is executing some important processes, such as setting it to 90 seconds, max_execution_time = 90.

Related recommendations: "php Getting Started Tutorial"

Note: There is also a set_time_limit function in the php function, which has the same effect as the above setting. These two The difference between them is that the above is set in the php.ini file, while set_time_limit is written in the php file. Therefore, you can also set the maximum execution time of the program by using set_time_limit on the page. For example, without limit: set_time_limit(0);

The third case: file_uploads = On. The default value is on, which means that it is allowed to pass. HTTP file upload, this option cannot be set to OFF.

Case 4: upload_max_filesize = 2M Set the maximum size of file upload. The default file upload size in the php.ini configuration file is 2M. A mistake that PHP beginners often make is writing files. When uploading the function, you set the form area for the maximum size of the uploaded file, that is, the maximum value of the file allowed to be uploaded, and the value of max_file_size (hidden value field) to specify the size of the uploaded file. In fact, generally others can bypass this value, so for the sake of safety, it is best to It is best to configure the upload_max_filesize option in the php.ini configuration file to set the size of the file upload. The default upload_max_filesize = 2M, that is, the file upload size is 2M. If you want to upload files exceeding 8M, such as 20M, you must set upload_max_filesize = 20M.

Scenario 5: post_max_size This value must also be large enough. This variable is also a variable related to form submission. It limits the maximum amount of data that the PHP program can receive when the client submits a form through the POST method. In general, this value can be set slightly larger than upload_max_filesize. For example, if you want to upload a 20MB file, this value can be set to 21MB.

Case 6: max_input_time This variable can limit the time of receiving data through POST, GET and PUT in seconds. If the application is running in an environment with a slow network, you need to increase this value to increase the time required to receive data, for example, set this value to 90 seconds.

max_input_time = 90

Case 7: memory_limit must also be large enough. In order to avoid running scripts from using a large amount of system available memory, PHP allows defining memory usage limits. Use the memory_limit variable to specify the maximum memory capacity that a single script can use. The value of the variable memory_limit should be appropriately larger than the value of post_max_size.

Scenario 8: In addition, if your host is an nginx operating system, if the above operations fail, remember to add client_max_body_size 20m; in the nginx configuration file. This sentence means that the maximum allowed upload is 20MB. , depending on your own situation. The location of my nginx configuration file is /usr/local/nginx/conf/nginx.conf.

The above is the detailed content of What is the solution to PHP file upload failure?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!