Check permissions for the uploading file. It should have readable permissions for all users. Set up the correct permissions if needed.
Check permissions for the var/attachments directory of your CS-Cart installation. It should have writable permissions for all users. Set up the correct permissions if needed.
Check the maximum size of the uploaded file on your server:
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.Note
For example, 5M means 5 Mb.
If the upload_max_filesize
value is less than the size of the file you would like to upload:
upload_max_filesize = 5M
with this one:
upload_max_filesize = 30M
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.