我的Rails 3.1应用程序使用authlogic。我刚刚添加了http_basic_authenticate_with,因此我可以限制访问整个网站以运行私有测试版,而且似乎已经破坏了authlogic:
class ApplicationController < ActionController::Base
protect_from_forgery
http_basic_authenticate_with :name => "frodo", :password => "thering"
使用上面的代码,当我尝试使用Authlogic 3.0.3登录时,身份验证会失败并且没有错误,并将我重定向到user_sessions新操作。
发生了什么事,我想同时使用它们!