Can't upload images bigger than 2 mb

PetraL / 2016-08-25 09:01:33   

I know the normal limit to upload images is at 2MB. How can I maximize this limit up to 10 mb as many youtubers making tutorials have done it?

sfjuocekr / 2016-09-18 22:15:02   

In .htaccess add:

php_value upload_max_filesize 10M

sfjuocekr / 2016-09-19 02:14:36   

You also need to edit options.php and change $default['maxsize'] from 8192 to 10240

It can be that you can not use php_value in .htaccess, create a file called .user.ini and put this in it (which is what PHP looks for):

upload_max_filesize = 10M

This thread has been closed, thank you.