Change Maximum Upload Of File

Where can i change the setting of the max upload of file in v4 ?
Default is 2 MB

Thank you

Where can i change the setting of the max upload of file in v4 ?
Default is 2 MB
Thank you


To do this, change the 'upload_max_filesize' and 'post_max_size' directives in your php.ini file.

To ensure that file uploads work correctly, the post_max_size directive should be a little larger than the upload_max_filesize.

For example to set a file upload limit to 20 megabytes:

upload_max_filesize = 20M
post_max_size = 21M

If you don't have a php.ini file in your installation folder, you can do this in your .htaccess file.

php_value upload_max_filesize 20M
php_value post_max_size 21M

To verify that the new setting is active, create a PHP test file (like 'phpinfo.php') that contains the following code below in the same directory where the .htaccess file is located:


Load the test file in your web browser, and then search for the name of the directive.
The Local Value column should display the new setting that you specified in the .htaccess file.

Where can i change the setting of the max upload of file in v4 ?
Default is 2 MB

Thank you

I think it is faster to ask your hosting administrator to do it. It should be changed on the server side

I think it is faster to ask your hosting administrator to do it. It should be changed on the server side

If it's a shared plan, then I don't think, they will change the configuration settings per customer request, unless they allow the users to set up their own php.ini files.