Update your php.ini file.. The file you are uploading is probably bigger than max-size in php.ini. Change values below:
post_max_size = 12M
upload_max_filesize = 12M
Last edit: Anonymous 2013-12-05
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Well, the problem is your upload_max_filesize/post_max_size as someone already pointed out here.
I'm not sure we can do something about it. I just leave this bug open so we can think about it in next release, maybe we can print an appropriate message.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Update your php.ini file.. The file you are uploading is probably bigger than max-size in php.ini. Change values below:
post_max_size = 12M
upload_max_filesize = 12M
Last edit: Anonymous 2013-12-05
Well, the problem is your upload_max_filesize/post_max_size as someone already pointed out here.
I'm not sure we can do something about it. I just leave this bug open so we can think about it in next release, maybe we can print an appropriate message.
I had the same problem. I solved changing parameters in php.ini file so as the first user sayd