How to increase the size of uploaded files in PHP

The standard maximum size of the file that you can upload in PHP is 2MB, but some scripts require an increase of this size.

Just create a file named php.ini in your computer and upload it to the folder of your web hosting, which you want to change the maximum size for:

upload_max_filesize = 10M
post_max_size = 20M

This will increase the maximum size of uploaded files in PHP from 2MB to 10MB. Note that post_max_size should be twice larger than upload_max_filesize.

  • 218 istifadəçi bunu faydalı hesab edir
Bu cavab sizə kömək etdi?

Uyğun məqalələr

Add your own php.ini file to the crontab command

If you want to use your own php.ini in the implementation of cronjobs, add the following to the...

Can I use short tags in PHP scripts

Yes you can. The settings of PHP (short_open_tag) allow you to use short tags in PHP scripts.

How to do URL redirection

You can do URL forwarding from the web hosting control panel. Once logged in click on Redirects....

How to turn off register_globals in PHP

In each directory where you want register_global to be turned off, place the following php.ini...

How to use Apache mod_rewrite

QHoster.com has installed Apache mod_rewrite on all web hosting servers.To enable mod_rewrite, it...

Powered by WHMCompleteSolution