Authlogic is a clean, simple, and unobtrusive ruby authentication solution.

learn more… | top users | synonyms

0
votes
1answer
11 views

How to develop an authentication/authorization plugin that I can use for multiple projects

I am a newbie for RoR but I liked it so far. For the current project I already developed an authenticaion page where the user will be authenticated before and after login. I know that I will be doing ...
1
vote
2answers
24 views

Redirect to previous page wherever it is directed to the login page

I'm using Rails 3.2 and Authlogic. I have the following code: class ApplicationController < ActionController::Base private def store_location session[:return_to] = request.url end ...
1
vote
0answers
20 views

Authlogic - how to make a registration and don't log in the new account?

I have an administration where I can create new accounts. For creating new accounts I am using the gem Authlogic. As admin, I would like to create a new account for a new user without log in (the ...
-1
votes
0answers
28 views

Authlogic uninitialized constant ApplicationController::UserSession

I've been looking for a while now to rectify this error when trying to display the 'new' user_session page after following the most recent Authlogic tutorial on github. I get the following ...
0
votes
1answer
17 views

Routing Error when used Authlogic with Rails 3.2.9

I have configured authlogic gem for user management needs by referring https://github.com/jonathandean/authlogic_example. I have configured everything correctly. I am using Rails 3.2.9 and ruby 1.8.7. ...
2
votes
1answer
36 views

Keep state of user in rails app with extra details

I am new to rails , previously I have worked extensively with Yii (PHP, MVC framework) . Yii , allowed web user methods to set state variable , such as Yii::app()->user->userid ...
0
votes
0answers
32 views

Authlogic / Selenium breaks after rails 3.2.12 upgrade

I'm using Authlogic and having difficulty getting my Selenium tests to work with :js=>true after upgrading to Rails 3.2.12. The same tests use to worked under Rails 3.1.3. I am running my tests ...
0
votes
2answers
29 views

Authlogic - return user to intended page after login

How can you adapt a standard Authlogic app so instead of the home page every time, it directs a user to whatever link they were trying to get to? Example 1 - standard log in works as expected User ...
0
votes
1answer
38 views

Authlogic and Android, Verify user credentials

I have a rails app that uses Authlogic (from gem Communityengine). Now I want users to be able to login on a mobile device (Android in that case) If I understand correctly I can use Http Basic ...
0
votes
0answers
14 views

Multiple, simultaneous, scoped, logins with authlogic

The app that I'm working on allows people to use the product with anonymous accounts. Some users also need to be admins though and if I reuse their anonymous accounts then it becomes very easy to ...
0
votes
1answer
39 views

authlogic “you did not provide any details for authentication” with email and password fields in form

I constantly get the above message when I try to login to the user I created after logout... my user model is this, name is the display name class User < ActiveRecord::Base attr_accessible ...
0
votes
1answer
41 views

Can capybara be used with factory girl and authologic

I am using authologic in my rails app, while I create user via factory girl and try to login via log form, I can't login(getting issue login is not valid). Any one having any suggestion? Thanks in ...
0
votes
1answer
117 views

Error using authlogic for login: :Can't mass-assign protected attributes:

I 'm using authlogic for authentication and using this tutorial. I did refer to rubyDocs also. If I understand it correctly that attr_protected method ensures list of attributes will not be ...
1
vote
0answers
41 views

Can't create users in rails when using authlogic because of cookies

So, I have a standard rails 3 app with authlogic. If I'm not in the browser (in the console or in the test environment), I can't create user models. For example: I have this code either in a rspec ...
0
votes
0answers
214 views

Authlogic/Rspec/Rails 3.2: UserSession.find returns nil in ApplicationController

Relevant models: class User < ActiveRecord::Base acts_as_authentic end class UserSession < Authlogic::Session::Base end ApplicationController: class ApplicationController < ...
0
votes
0answers
31 views

Cucumber javascript driver with Authlogic session?

I have scoured the internet for a working solution and haven't turned up anything that I've managed to get working. I'm running Cucumber tests with Capybara and Poltergeist. My Rails app is using ...
1
vote
0answers
44 views

Error while creating user after installing authlogic on rails

I have installed authlogic on my rails3 to make auth system easier.But after installing authlogic, I can not add any new user. I get user exists error. Here is the log file. Started POST ...
0
votes
0answers
94 views

Capybara + authlogic: session persistant

I have been searching exhaustively in StackOverflow, but can't find any appropriate solution. I am testing my javascript in a Ruby on Rails app, using RSpec + Capybara and Selenium driver. For ...
0
votes
3answers
289 views

Rspec - You must activate the Authlogic::Session::Base.controller - I've already tried the common suggestions

I know this question has been replied many times, but the existing answers are not resolving my issue. I want to run my rspec tests for the controllers. I need to authenticate the user through ...
0
votes
0answers
87 views

AngularJS: passwod field is not getting passed to the rails controller

Hi I'm using authlogic for my authentication and have built an authorization system myself. I'm facing a curios issue when tryingto sign up a new user, namely that the password field is not getting ...
0
votes
0answers
106 views

Cannot get Authlogic working under Rspec

spec_helper.rb source ENV["RAILS_ENV"] ||= 'test' require File.expand_path("../../config/environment", __FILE__) require 'rspec/rails' require 'rspec/autorun' require 'capybara/rspec' require ...
0
votes
0answers
73 views

ActiveAdmin + AuthLogic fails with nil controller in rspecs

I'm trying to do some minimal testing of my activeadmin setup (just checking that the index pages render for each model). The app already uses Authlogic and already had an admin user, so I've adapted ...
0
votes
1answer
119 views

Maintain associations with act_as_paranoid

I have two models one of them is a User, and another Comments. Comments belong to User. class User < ActiveRecord::Base act_as_paranoid has_many :comments end class Comment < ...
0
votes
0answers
60 views

What's the difference between Sorcery and Authlogic?

What is the biggest difference between the Rails Sorcery authentication gem and Authlogic. They both allow you making your own controllers and views. Ryan Bates talks about how he likes Sorcery more ...
1
vote
0answers
145 views

Rspec stub/mock with authentication token (authlogic)

first posting on this helpful community, but have been using it since the start of my programming journey. I'm new to rails and have trouble writing tests. So far, I've been trying to write a ...
0
votes
0answers
38 views

Rails authlogic and acl9 allow all to download one format but restrict the rest

I like to restrict the access in a download method in a dataset controller with authlogic and acl9. The download method at the moment is restricted to logged in users only. But now I like to have one ...
0
votes
4answers
72 views

Authlogic_oauth2 alternative for Rails 2.3

In order to let users signup and login using facebook I used the authlogic_oauth2 gem (v.1.1.2) along with oauth2 (v. 0.0.10) and authlogic (2.1.6) in a Rails 2.3 application. Everything worked well ...
0
votes
1answer
67 views

Perishable Token not Found for Authlogic User in Rails

I'm using Authlogic with my Rails app and I can't figure out why it sometimes won't find a user based on the perishable token. It usually works, but sometimes it won't. I used this code so that ...
0
votes
1answer
159 views

How to implement API authentication for Rails app with Authlogic

I have a Rails app with an iOS mobile client. So far, I've had the iPhone client send HTTP requests to the normal URLs. I want to replace this with a proper API. I'm on Rails 3, and I'm using ...
0
votes
1answer
46 views

Authlogic jQuery alert before logged_in_timeout

I apologize for not having any initial code to support this question I have authlogic set up to logged_in_timeout after 20 minutes. What I would like to do is build a jQuery function that will pull ...
1
vote
0answers
61 views

Rails with authlogic and omniauth

I've seen quite a few tutorials, and I've completed a few implementations of simply 'connecting' social accounts to authlogic using an authorizations model. But I'm having trouble coming across ...
0
votes
1answer
201 views

Rails - minitest - Testing pages that require login

I am working on tests but running in to a road block on pages that require a current_user. I am using minitest, capybara, factorygirl, and authlogic, in rails 3.2.9 with ruby 1.9.3p327. I installed ...
1
vote
1answer
44 views

Is a good idea create validators that checks if logged in user.id is the same of my row user_id?

I'm just unsure about the approach. Actually I've this situation: User belongs_to Organization Organization has_many User Organization has_many MembershipCard MembershipCard belongs_to Organization ...
0
votes
1answer
104 views

Change user password with password confirmation

I'm trying to update user password using password_confirmation to confirm it. However, I can't find a way to correctly update my password, I set password with password= and password_confirmation= but ...
0
votes
0answers
43 views

Authlogic multiple passwords per resource

I'm using Authlogic to password protect particular routes. The user is able to share certain pages, and can protect them with a password. I have this working fine for one password, but want to be able ...
1
vote
1answer
93 views

Validating EMail field with Authlogic

I have just started new application for practice purpose and want email-field validation on registration page. I have googled for that and got the solution as class user < ActiveRecord::Base ...
0
votes
0answers
58 views

Rails 3 + Authlogic + Passing three parameter for validating the User

In my authlogic, I am trying to pass three parameter to validate the user ie ( email, dob, passowrd) because email address is not unique through the system. But I am not getting the way to validate ...
2
votes
0answers
85 views

Authentication using Authlogic in rails without email column in user model

I am using Authlogic for authentication in my ROR app. Previously i had used the normal authlogic email based login and had email and password fields. Now i want the users to login by multiple email ...
0
votes
1answer
138 views

How could I use authlogic as authentication middleware for a sinatra app specifically split?

I am using authlogic in my application. I also have split for A/B testing. I want split to use authlogic for authentication instead the BasicAuthentication or no authentication. So I set my ...
0
votes
2answers
82 views

How to provide authentication for mobile application in Ruby on Rails

I need to create a new web application along with the REST apis for mobile applications.I am planning to use Authlogic for authentication purpose. I want to know what is the best way to provide ...
3
votes
1answer
110 views

Prepend user ID to all log messages in Rails

In order to help track user actions for debugging purposes, we are considering prepending the session's logged in user ID to every log message (when applicable). Our stack consists of Rails and ...
0
votes
1answer
41 views

How to use format.js when credentials are incorrect and redirect when credentials are correct?

I am using Authlogic gem for user sessions. The login form is shown in a modal, so if the user credentials are incorrect, I want to display the error message on the modal, thats why I use remote: ...
0
votes
1answer
65 views

Authlogic Webapp does not work any more in selenium-Javascript tests

Testing a Ruby on Rails application, I have working tests (also asa logged in user), however as soon as I put the ":js=>true" option behind a test it "does", :js => true do ...
0
votes
1answer
157 views

Can't create a new user with Authlogic

My user.rb looks like this: class User < ActiveRecord::Base attr_accessible :password, :password_confirmation, :crypted_password, :username, :password_salt, :persistence_token ...
0
votes
1answer
491 views

undefined local variable or method `config' for main:Object (NameError) when running rails server

Hi I've been following a tutorial for authlogic gem in railscasts... http://railscasts.com/episodes/160-authlogic?view=asciicast From the tutorial, I was asked to add config.gem "authlogic" in my ...
0
votes
1answer
69 views

Authlogic :remember_me option don't work for user

Have such user_session model: class UserSession < Authlogic::Session::Base logout_on_timeout true # default if false find_by_login_method :find_by_login_or_email remember_me_for 2.weeks ...
0
votes
1answer
133 views

Windows Rails 3 Errno::ECONNABORTED & Authlogic not working properly & Development 500 error

I'm developing rails app and everything was working fine, but now it started bugging. I have implemented ActionMailer with Authlogic perishable token and now, everytime I try to access ...
0
votes
1answer
137 views

Rails 3: despair - cannot login to successfully created account with Authlogic

I installed Authlogic gem, set up controllers and models. When I make a registration of new account with Authlogic, everything is successfully created in the DB table (like crypted_password, ...
0
votes
1answer
197 views

How to create user with Authlogic in db/seed.rb?

When I use the following line in db/seed.rb: #Authlogic::Session::Base.controller = Authlogic::ControllerAdapters::RailsAdapter.new(self) User.create!({:name => "debug", :email => ...
2
votes
1answer
117 views

current user is nil, after adding http basic authentication in production environment

I have implemented http basic authentication in my application, after the implementation of basic http authentication, current user is always nil in production mode. Pasted below my code for your ...

1 2 3 4 5 14