We ve never gotten this app to run in production. The application runs just fine in dev. I ve made sure all rake tasks are up to date and acts_as_authentic is set for the user and everything else that everyone has posted on all the forums. The server has been bounced multiple times. This error comes up every single time on all URLs.
Details below:
NoMethodError in User_sessions#new
Showing app/views/user_sessions/new.html.erb where line #6 raised:
undefined method `username for #<UserSession: no credentials provided>
Extracted source (around line #6):
3: <% form_for @user_session, :url => user_session_path do |f| %>
4: <%= f.error_messages %>
5: <%= f.label :username %><br />
6: <%= f.text_field :username %><br />
7: <br />
8: <%= f.label :password %><br />
9: <%= f.password_field :password %><br />
So I m getting towards the end of my rope. I read a lot of praise for Authlogic but I ve spent hours and hours trying to get it to work one step at a time. We have to get this server up but nothing that we do can get this error to go away. We re seriously considering virtualizing the dev environment for now so the users can get something done.
Anyone have any ideas?