-
- file_uploads = On ;Turn on the file upload option
- upload_max_filesize = 500M ;Upload file limit
Copy code
Secondly, if you want to upload a very large file, in addition to modifying the above two items, you must also Increase the upper limit of server cache and increase the maximum script execution time.
as follows:
-
- post_max_size = 500M; post upper limit
- max_execution_time = 1800; ; Maximum amount of memory a script may consume (128MB)Memory limit
-
-
Copy code
|