I found the answer to my own problem:
After some debugging and logging, I noticed that the ''create''
action
was not being registered by Rails. The ''new'' action would jump
straight to the ''index'' action, which is a display list of the
uploaded files. Thanks to Steve Eichert'' June 20, 2007 blog entry, I
found a workaround. Add this to the body of the ApplicationController
class in application.rb :
def default_url_options(options)
{ :trailing_slash => true }
end
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---