Knowledgebase: Technical Issues > Scripts
Raising PHP file upload limits
Posted by Yuri, Last modified by David Suker on 21 November 2019 05:09 PM

If you want to raise your file upload limit from the default value of 2MB to a larger size, try the following. We'll be using 64 MB as an example.

Edit the php.ini file in domain's docroot (usually "public_html" directory) and add these lines:

upload_max_filesize = 64M
post_max_size = 64M

Save the file and you're done!

(17 vote(s))
Helpful
Not helpful

Comments (0)