PHP cannot upload solution larger than 2M file

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags configuration default file file size files php programming reset

General PHP Settings default upload file size is 2M, so if you want to upload more than 2
m file, you need to reset the PHP configuration file.

Open PHP.ini, first find
;;;;;;;;;;;;;;;;
; File uploads;
;;;;;;;;;;;;;;;;
Area, there are several parameters that affect file uploads:

File_uploads = on; whether to allow the switch to upload files over HTTP. The default is on, which is open

Upload_tmp_dir files are uploaded to the server where temporary files are stored, and the system default temporary folder is used if unspecified

Upload_max_filesize = 8m business, that is, the maximum size of the upload file allowed. The default is 2M


In
;;;;;;;;;;;;;;;;;
; Data handling;
;;;;;;;;;;;;;;;;;
Area and one more:

Post_max_size = 8m refers to the maximum value that can be received by the form Post to PHP, including all the values in the form. The default is 8M


Generally, set the above four parameters, upload <=8m file is not a problem, in the normal network situation.


However, if you want to upload >8m files, only set up the above four will be able to do. Unless your network really has 100m/s upload high-speed, otherwise you have to care about the following parameters:

;;;;;;;;;;;;;;;;;;;
; Resource Limits;
;;;;;;;;;;;;;;;;;;;

Max_execution_time = 600, maximum time for each PHP page to run (seconds), default 30 seconds

Max_input_time = 600, maximum time required for each PHP page to receive data, default 60 seconds

Memory_limit = 8m, maximum memory consumed per PHP page, default 8M

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.