disable or adjust php file uploads to unlimited size

SiliconDarkness

New member
Joined
May 22, 2022
Messages
1
Location
Upstate NY USA
how can you setup the ability to upload files via php to unlimited or no limit?

my server only hosts 1 site mine and i want to be able to upload files via php no matter how big they are.

Thank You
 
There is always a timeout via php if I'm not correct, not 100% sure. If you want to upload that big files you can better do that via FTP.

For other files (I don't know the php limit by head), check the php.ini file and raise these values to your needs:
upload_max_filesize = 64M post_max_size = 64M max_file_uploads = 20
and restart php (or php-fpm) after making the changes.
 
Back
Top