upload_max_filesize
variable. The value of this variable defines the maximum size of the file which can be uploaded through PHP script on your server. For example, if the variable value is 5M, it means that the maximum size of the file is 5 Mb.If the upload_max_filesize
value is less than the size of the file you would like to upload:
Replace the following line of the code in the php.ini file in the root directory on your server:
upload_max_filesize = 5M
with this one:
upload_max_filesize = 30M
Save the file. If you do not have this file, you can create it.
Important
php.ini files are not supported on some servers. In this case contact your server administrator and ask him to increase the value of the upload_max_filesize
PHP variable for your account.
Questions & Feedback
Have any questions that weren't answered here? Need help with solving a problem in your online store? Want to report a bug in our software? Find out how to contact us.