If you have a website which allows users to upload their own images then you will need to change the default maximum files size upload.
The PHP default for all file uploads is 2MB, so the server will error if you try uploading a file more than 2MB. This can be a problem if you want users to upload pictures as most pictures now are going to be far more than 2MB.
The idea of putting the file size at a low limit is to help the server save bandwidth, which you will need if you are on a shared hosting account. But if you want to change this you will need access to the PHP.ini file.
PHP.ini
Go to your PHP.ini file and enter the following code snippet.
file_uploads = On
upload_max_filesize = 10M //needs to be in {x}M format
Remember that changing the file upload limit will be decided by your hosting company. If you have an upload limit on your account then make sure you don’t upload too many images.
Pingback: Increase The Default Maximum File Upload Size In PHP | Web Dev & Design | Scoop.it
Pingback: Increase The Default Maximum File Upload Size In PHP | Design News