What is the PHP upload limit on Linux Shared Hosting accounts?
Print this Article
Last Updated:
March 10, 2009 7:30 AM
Other than the total available disk space in your Shared hosting account, we do not set any FTP upload limit. However, by default, PHP limits uploaded files to 8 MB. To change the value of your uploadable file size limit, edit the following values in your /php.ini or /php5.ini file:
memory_limit = 50M
post_max_size = 8M
file_uploads = On
upload_max_filesize = 192M
post_max_size = 8M
file_uploads = On
upload_max_filesize = 192M
The above settings change your PHP upload limit, allowing you to upload files up to 8MB in size.