Attempting to remove an image from a product in Drupal / Ubercart error
While attempting to update a product on a site using Ubercart and Drupal I get the following error.
An unrecoverable error occurred. The uploaded file likely exceeded the maximum file size (25 MB) that this server supports.
There is no file being uploaded as I'm removing the current one I get this error and no upload form appears.
I'm using IE7, No issues in firefox though.

Replies
IE posting ajax
I had this before and while this post at http://drupal.org/node/522688 as not the same a solution in one of the replies fixed it for me
Because form.jquery.js is compress you must switch to uncompressed so you can edit it (download the proper jquery.js file here http://malsup.com/jquery/form/jquery.form.js?2.28)
Uncomment the following lines in the jquery.form.js
var mp = 'multipart/form-data';
multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
The above lines will be approximately at line number 145, 146
since this has been reported for sometime a real fix would be out
Post new comment