On Nov 14, 10:54 am, CC Chen <[email protected]> wrote: > Hi > > I want to upload file using rails. > > I google search find that > :http://www.tutorialspoint.com/ruby-on-rails/rails-file-uploading.htm > > but it can't not work! > > I also modify "<%= start_form_tag" to "<%= form_tag" > and "<%= end_form_tag %>" to "<% end %>" > > It still show error message: > > "Routing Error > No route matches [POST] "/upload/uploadFile" " > > But on routes.rb it included get "upload/uploadFile" and get > "upload/index" > > How to fix the problem ? >
You're using a really old tutorial, getting on for 5 years old. Routing has changed profoundly in rails since then, in particular if you were adding an uploadFile action, you would need to add a route for that action. I'd strongly suggest you find a more recent tutorial on file uploads. Fred > rails version: 3.1.1 > OS : Windows XP > > Thanks > > -- > 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

