search for: logingenerator

Displaying 20 results from an estimated 32 matches for "logingenerator".

Did you mean: login_generator
2006 Jan 16
2
LoginEngine vs. LoginGenerator?
I just saw a mention here of LoginEngine, which I hadn''t heard of before. Last week when I was digging for user-account sample code for my web-app, I instead found the LoginGenerator and started using that: http://wiki.rubyonrails.com/rails/pages/LoginGenerator Is one of these preferred over the other? From skimming the API docs, it does seem that LoginEngine has more features, like email-based verification, that I''ve been hacking into LoginGenerator myself. If...
2006 Apr 23
1
LoginGenerator problem after updating to FC5 and latest Rails
People, A simple Rails app that was previously working with LoginGenerator eg: http://localhost/library/account/signup is now giving: <h2>Application error</h2>Rails application failed to start properly Other Rails apps are working OK that don''t use this LoginGenerator. I have re-installed it with: gem install login_generator Anyone know what m...
2006 Aug 02
12
Authenticate with an IP address : LoginGenerator
Is there a way to authenticate with an IP address? I''m using the LoginGenerator, but would like to bypass the "before_filter :login_required " if a user is in a correct IP range... Anyone know of a solution? Thanks! -- Posted via http://www.ruby-forum.com/.
2006 Feb 20
6
LoginGenerator - multiple user types...
I have been looking at the LoginGenerator gem. Looks great and can be easily modified. However in my app I have two places where people can login, one is for in my case "employees" the other is for "users". They are seperate tables in my database and have many different fields. I have an admin area located at ./sysa...
2006 Feb 01
1
LoginGenerator - Firefox Problem -The page isn''t redirecting properly
Hi, HAs anyone come across this issue in Firefox; I''ve just installed LoginGenerator and I''m allowing cookies to be set yet any all to http://apollo:3000/account/login results in the error; Firefox has detected that the server is redirecting the request for this address in a way that will never complete. Any Clues?? Eric.
2006 Jan 09
0
Need help configuring LoginGenerator
I''m new to Rails and I''m trying to get user login working on my app. I''m running Ruby 1.8.2 on OSX 10.4 with Rails 1.0 I''ve installed the most recent LoginGenerator(1.1.0) and followed the instructions in README_LOGIN as well as referencing any additional information at http://wiki.rubyonrails.com/rails/pages/LoginGenerator. The error message I''m stuck at is : undefined method `LoginSystem'' for ApplicationController:Class when trying to acc...
2006 May 18
0
LoginGenerator
try >sudo gem install login_generator > -----Original Message----- > From: rails-bounces@lists.rubyonrails.org > [mailto:rails-bounces@lists.rubyonrails.org]On Behalf Of Bala Paranj > Sent: Thursday, 18 May 2006 1:26 PM > To: rails@lists.rubyonrails.org > Subject: [Rails] LoginGenerator > > > I am following the instruction on the wiki and when I run: > gem install login_generator > > I get: Permission denied - > /usr/local/lib/ruby/gems/1.8/cache/login_generator-1.2.0.gem > > How can fix this? Thanks in advance. > > http://www.ProblemSolving...
2006 Jul 05
8
loginGenerator - getting logged in username
i am working on a site taht uses loginGenerator.. it''s a great little package, but i am running into one little problem.. i would like to have something that says: "logged in as <username>" in the site, but i am not quite getting it.. what i am using is: <p>You are logged in as: <%= @session[:user] %> b...
2006 Mar 03
5
Quick question about @params
I was looking through the loginGenerator code and noticed the following: Login: User.authenticate(@params[:user_login], @params[:user_password]) Signup User.authenticate(@user.login, @params[:user][:password]) The syntax of the call in the signup code confused me...what exactly does @params[:user][:password] this return to me? Is the...
2006 Jul 11
3
LoginGenerator Killing Me ;)
OK I have dents in my head from beating on LoginGenerator, so if anyone who has used this thing can shed a little light I would greatly appreciate it. It is installed and I have set it up on my User class. Folks can login, logout, etc just fine. I have am not using the per method protection model yet, as I am trying to migrate slowly ;) What is brok...
2006 Jun 19
0
logingenerator multiple select
hi, ..i''ve just finished installing the login generator and acl system from http://wiki.rubyonrails.com/rails/pages/LoginGeneratorACLSystem (sql sctructure of a habtam relationship of roles//users, roles//permissions and so, being able to asign roles[with the associated permissions]to the users..) anyway, now i need to implement associating the correct permissions for the correct role in the view, and so after scaffoling,...
2006 Jan 10
0
LoginGenerator called on Form Submission
I have login authentication set for the submit action of a form. I want the form to be visible to unauthenticated users but when they fill in the form and submit it, I want it to redirect to the login page and then onto the original form submission action after the user is authenticated. This part is easy. The hard part is, how do I pass the parameters collected from the original form
2006 Apr 14
6
LoginGeneratorACLSystem Issue
Hello all, Again, thank you all in advance for any help here. I am trying to figure out how to show the role associated with a user, in a template. I am using the LoginGeneratorACLSystem along with the LoginGenerator. I can show the first name of the user by writing "<%= session[:user].first_name %>" but when I write "<%= session[:user].roles.name %>" it spits out "Role". I am not sure what I am doing wrong. Essentially what I...
2006 May 31
3
validate unless, LoginGenerator difficulty
I apologize if this is a very simple question; I''ve searched the forums, wiki, Google, and Agile Web Development with Rails to no avail. Is there a way to put conditional validation in the model? For instance, if I want to limit items a user can add unless the user is an admin? My current code is: validates_uniqueness_of :user_id, :scope => ''event_id'',
2006 May 26
2
Rails app fails to start with LoginGenerator
Hi guys I was following this: <a href="http://wiki.rubyonrails.com/rails/pages/LoginGenerator">tutorial</a> and everything was perfect until I run the script. I''ve got: <strong>MissingSourceFile</strong><br /> no such file to load -- user.rb <br /> RAILS_ROOT: script/../config/.. <br /> <pre><code> /usr/lib/ruby/gems/1.8/...
2006 Jul 04
1
LoginGenerator Problem
I am trying to make a barebones login system based on this example (which in turn is just standard RoR login) but when I enter a user name and password, it says the login is unsuccessful every time. I am not sure where I am going wrong. Here is all relevent information CREATE TABLE `users` ( `id` int(6) unsigned NOT NULL auto_increment, `login` varchar(20) NOT NULL default
2006 Jan 09
3
Emailing lost passwords
...with smart remark and the answer :) I want to have a feature on my site that allows me to email forgotten passwords back to the user (like what Backpack does). Now I''m currently encrypting the user''s password + salt before saving to the database using code borrowed from the LoginGenerator. The question I have is there any way to get the user''s password after if it''s been SHA1''ed or do I have store the user''s password as plain text in the database? If I have to store is plain text, isn''t that a bit insecure? And if so why does backpa...
2005 Dec 27
4
Using mocks
Hi, What's the purpose of test/mocks? I couldn't quite complete the Wiki entry on this because all the information I _could_ find was in the readme. - Rowan -- Morality is usually taught by the immoral. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
2006 Apr 15
2
Users authentication & Autorization
Hi, Is there any documentation about this??? any guideline to be started with?? I''m googled a bit, but I can''t find anything relatively serius about this. Hope someone of you have a GURL (Good URL). Thanks :-)
2006 Mar 24
2
Basic Auth in WEBrick
Yo all, All I want to accomplish at this moment in time is simple password protection around a rails application in development using WEBrick on a custom port. Just one account would be fine. I have done an extensive Google hunt for an example, but I all find are code chunks for starting WEBrick such as: realm = "Gnome realm" start_webrick {|server| htpasswd