Home>Article>Backend Development> How to change the size of PHP upload files under Linux
How to change the size of PHP upload files under Linux: First find the php.ini file through the Linux file search command "find / -name php.ini"; then modify the values of "upload_max_filesize" and "post_max_size". Can.
The operating environment of this article: linux5.9.8 system, PHP7.1 version, DELL G3 computer
How to change php upload under Linux File size?
Modify PHP upload file size settings
Problem:
Uploading MV to the server found that there is a maximum file limit: 50M
How What about modifications?
After a while, I modified theupload_max_filesize = 100Mandpost_max_size = 100Min the php.ini file. Then the question is, how do I know this? Where is the file?
Linux file search command:
find / -name php.ini
Okay, if you know where the file is, just modify it, but modifying it through the shell is too slow. Sorry, it’s much more convenient to download it locally using A screenshot of a blogger's article. I modified it to 100M. You can adjust the size according to your own needs. Just know where to modify it.
Recommended study: "
PHP video tutorial》
Then restart nginx. If you don’t know how to start it, just reboot. It’s simple and crude...
The above is the detailed content of How to change the size of PHP upload files under Linux. For more information, please follow other related articles on the PHP Chinese website!