If a user has cookies disabled in their browser can restful authentication and role requirement still work?
On our site, with cookies disabled, the system won’t let you log in. Any way to fix this?
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should be able to get the users to log in via HTTP Auth. Using
request_http_basic_authenticationshould make the browser request auth. This is remembered by the browser.Or better override
login_from_basic_authinauthenticated_system.rb:This will most likely make all users see the HTTP auth page. You should probably only do this for users known to lack cookie support.