I had the same error, a blank page when using user_engine for the first time. When I saw this post after a google search, I immediately knew what was wrong, but there might possibly be a beginner greener than me asking for an answer...
The application.rhtml in <rails root>/app/views/layouts/ should not be blank, it should have <%= @content_for_layout %> in it so the page can be rendered. The reason it's a bit confusing is that user_login doesn't require a application.rhtml, but user_engine does. So you have user_login working, install according to the readme for user_engine, get the application.rhtml error, create a blank file for application.rhtml, and then you're at this post. At least that's what I did, hopefully someday I'll stop hitting every wall while walking down the rails hallway. -- Posted via http://www.ruby-forum.com/. _______________________________________________ engine-users mailing list [email protected] http://lists.rails-engines.org/listinfo.cgi/engine-users-rails-engines.org
