Hello Everyone, Anybody know how to upload multiple images using attachment fu plugin thanks in advance -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 06 Feb 2009, at 10:26, Cyrus Dev wrote:> Anybody know how to upload multiple images using attachment fu pluginattachment_fu is a model plugin, so it has nothing to do with multiple file upload. That said, a simple google search brings up plenty of tutorials on how to handle it in views and controller and pass it to your attachment_fu powered model: http://www.google.com/search?client=safari&rls=en-us&q=multiple+file+upload+attachment_fu&ie=UTF-8&oe=UTF-8 Best regards Peter De Berdt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I tried attachment_fu and paperclip and I can only recommend paperclip... I think it''s easier and more rails-like :-) To your question: This guide looks good: http://www.flex888.com/122/multiple-file-upload-with-ruby-on-rails-acts_as_attachment.html I have in mind that acts_as_attachment and attachment_fu have the same API so this should work for attachment_fu ;) On Feb 6, 10:26 am, Cyrus Dev <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hello Everyone, > > Anybody know how to upload multiple images using attachment fu plugin > > thanks in advance > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I used both: as far as I know paperclip only permits you to have 1 attachment per model. attachment_fu is more flexible about this. am I wrong? On Fri, Feb 6, 2009 at 10:17 AM, tschundeee <b.rahnema-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > I tried attachment_fu and paperclip and I can only recommend > paperclip... I think it''s easier and more rails-like :-) > To your question: This guide looks good: > > http://www.flex888.com/122/multiple-file-upload-with-ruby-on-rails-acts_as_attachment.html > I have in mind that acts_as_attachment and attachment_fu have the same > API so this should work for attachment_fu ;) > > On Feb 6, 10:26 am, Cyrus Dev <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: > > Hello Everyone, > > > > Anybody know how to upload multiple images using attachment fu plugin > > > > thanks in advance > > -- > > Posted viahttp://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Fri, Feb 6, 2009 at 3:23 PM, Mathieu Rousseau < mathieu.rousseau.31-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I used both: as far as I know paperclip only permits you to have 1 > attachment per model. attachment_fu is more flexible about this. > am I wrong? >Paperclip allows more than one attachment per model Andrew Timberlake http://ramblingsonrails.com http://www.linkedin.com/in/andrewtimberlake "I have never let my schooling interfere with my education" - Mark Twain --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
It allows 1 - n ? Can I have a list of attachments associated to the model? or you have to add each attachment? On Fri, Feb 6, 2009 at 1:14 PM, Andrew Timberlake < andrew-642hCh26+Dt3UeSHeRwt+FaTQe2KTcn/@public.gmane.org> wrote:> On Fri, Feb 6, 2009 at 3:23 PM, Mathieu Rousseau < > mathieu.rousseau.31-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> I used both: as far as I know paperclip only permits you to have 1 >> attachment per model. attachment_fu is more flexible about this. >> am I wrong? >> > > Paperclip allows more than one attachment per model > > Andrew Timberlake > http://ramblingsonrails.com > http://www.linkedin.com/in/andrewtimberlake > > "I have never let my schooling interfere with my education" - Mark Twain > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---