[Rails] Re: Action working in local, not working once deployed

2009-01-19 Thread Tranquiliste
More information In my original view I had : <% form_for :building, :url => buildings_path do |f| -%> # The create action worked well locally but not on the server I tested with : <% form_for :building, :url => {:action => 'create', :controller => 'buildings'} do |f| -%> # I had stil the sam

[Rails] Re: Action working in local, not working once deployed

2009-01-19 Thread Tranquiliste
Hello, this is very strange if in my view I replace the 'create' action by another name, it works (i have also modified the controller with the same action name of course) !!! <% form_for :building, :url => {:action => 'created', :controller => 'buildings'} do |f| -%> --~--~-~--~~-