Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use jQuery file upload in my project since three months to upload and resize image files. Everything was working fine until last week. The plugin doesn't resize the images anymore (latest google chrome and latest firefox).

I'm using the same basic configuration on this page https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin

Does someone has the same issue and maybe a solution ?

Thanks

share|improve this question
you have to do it on your own I suppose.Can you say me what server side are you using?If it is in asp.net I can help you. – coder Apr 29 '12 at 19:10
1  
No, the plugin is supposed to resize the image before sending it so it's faster to upload. Everything was working fine before. – BenoitD Apr 29 '12 at 19:19

1 Answer

up vote 1 down vote accepted

The best way is what I'm doing at present is:

$('#fileupload').fileupload({
      dataType: 'json',
      url: 'Upload.ashx,
      done: function (e, data) {
      $("#page_navigation").show();
            $.each(data.result, function (index, file) {
            $('#placeholderforimages').append("<img style='height:48px;width:65px;' src='yourimagepath'>");
            }
 });

UPDATE:

Here is the wiki options you need to make an array and need to declare in that

[
    {
        action: 'load',
        fileTypes: /^image\/(gif|jpeg|png)$/,
        maxFileSize: 20000000 // 20MB
    },
    {
        action: 'resize',
        maxWidth: 1920,
        maxHeight: 1200,
        minWidth: 800,
        minHeight: 600
    },
    {
        action: 'save'
    }
],
share|improve this answer
Your code is the solution but why did it work before without theses options ? Anyway thanks ! – BenoitD Apr 29 '12 at 19:30
You're welcome :)I could say if I see some code of your's. – coder Apr 29 '12 at 19:34
It was exactly the same code as yours without the "process" parameters. – BenoitD Apr 29 '12 at 19:38
Then something somehwere might be gone wrong :( – coder Apr 29 '12 at 19:41
Maybe but everything is fine now. Thanks again :) – BenoitD Apr 29 '12 at 19:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.