search for: here44

Displaying 20 results from an estimated 30 matches for "here44".

2006 Apr 27
12
Stealing users IP address
Is there a functiaon to take the IP address of person who submits to a form example: <input id="user_ip" name="user[ip]" type="hidden" value="<%= some_ip_call %>" /> -- Posted via http://www.ruby-forum.com/.
2006 May 10
7
AJAX effects
I was at http://rails.techno-weenie.net/ and I like what ajax does when you click on "login" how can I do this on my own website? Is this with the defualt JS libary? -- Posted via http://www.ruby-forum.com/.
2006 May 11
9
Undoing a SHA1
Hello for my password recovery system I want to recover the users password and send it to them. In the DB its saved via SHA1 (login generator) -- Posted via http://www.ruby-forum.com/.
2006 May 04
6
Login generator ALWAYS says login unseccesfull
Hey I just ran this "ruby script/generate login loging_in" here is my SQL: CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `user_name` varchar(80) default NULL, `login` varchar(120) NOT NULL default '''', `last_update` timestamp NOT NULL default ''0000-00-00 00:00:00'', `last_attack` timestamp NOT NULL default ''0000-00-00
2006 Apr 27
2
Red cloth
what is the require I must put in my enviremnt to use red cloth? -- Posted via http://www.ruby-forum.com/.
2006 Apr 29
2
Creating your own params
I want to pass my own param called randid so I can do this @rnd = params[:randid] this will work if I can pass the :randid -- Posted via http://www.ruby-forum.com/.
2006 Mar 29
8
Action Mailer
Does anyone know where I can download an demo app of action mailer. I''ve looked every where. I''ve also done the tuts. but, they don''t work for me. Thanks... -- Posted via http://www.ruby-forum.com/.
2006 Apr 26
7
Not updating
I copied the scaffolding edit and update and made it like this, Note: awnser is edit. Admin_contoller.rb def awnser @question = Question.find(params[:id]) end def update @question = Question.find(params[:id]) if @question.update_attributes(params[:question]) flash[:notice] = ''Question was successfully updated.'' redirect_to :action => ''list''
2006 Apr 27
11
Action Mailer Error!!!
What does this mean? Bad file descriptor - connect(2) -- Posted via http://www.ruby-forum.com/.
2006 May 08
2
Making a array to use with @user.
Hi all, I made this array: @army_types = ["ss","s","xl","l","m","w","xw"] but, I want to be able to go like this @army_types.each do |st| @user.st end but, I get the error that "@user.st" st is not a valid feild for the table user. Is there a way to get around MySQL running it first? -- Posted via
2006 May 11
2
Login Generator and Salter
okay, I''m using login generator. And when I log in alwase get failed. So I looked at my log, I gatherd infomation that says on creation the salted pass was: 2b8b06e5a650a4b97f146e6b5ae7ab82c43707e on login the salted pass is: 2b8b06e5a650a4b97f146e6b5ae7ab82c43707e and in my DB it is: 2054d52ca901ff70b5a334cb3e13d8c67940c3f3 So in my DB it change why? -- Posted via
2006 May 12
1
Some error about adding.
Ok so I''m trying to make a little exchange 3 for 1 of 1 higher rank here is the code in the controller: def exch_link @id = @session[:user].id @type = @params[:type] exch(@id,@type) end def exch(user_id,this_type) @user = User.find(:condtions => "id = " + user_id) @ranks =
2006 Apr 21
2
Action Mailer E-Mail
Two qs: 1. Does AM have to use a real e-mail addr? 2. Where can I get a free e-mail addr that has POP without SSL? -- Posted via http://www.ruby-forum.com/.
2006 Apr 26
1
cant able to c welcome page. ...http://localhost:3000/
Hi, After starting instant rails and starting apache by using command ruby script/server i got all the messages perfectly as it was informed....and no error was shown but after i entered http://localhost:3000 it was half way in loading and i cant able to get welcome page.... i tried deleting that instant rails and again extracted the new one but nothing works... tell me what can be
2006 May 05
0
Login generator ALWAYS says login unsuccessfull
...39;' ) LIMIT 1 Rendering within layouts/application Rendering admin/welcome/login Hash stored in Mysql database f37194f74a42f4b41b0eaefb598952e2ffd5dd77 rails-request@lists.rubyonrails.org wrote: > Message: 4 > Date: Fri, 5 May 2006 00:19:42 +0200 > From: Mohammad <name.goes.here44@gmail.com> > Subject: [Rails] Login generator ALWAYS says login unseccesfull > To: rails@lists.rubyonrails.org > Message-ID: <6a537d96f327bc47e14432cef0cc3c58@ruby-forum.com> > Content-Type: text/plain; charset=utf-8 > > Hey I just ran this "ruby script/generate logi...
2006 Apr 16
3
AJAX multi actions?
How can I do something like this: <a id=a7 style="cursor: pointer;" onClick = "new Effect.Fade (''li''); Element.show(''a1'',''a2'',''a3'',''a5'',''a6''); onClick = "new Effect.Fade (''rp'');
2006 Apr 27
6
Possible to use dashes instead of underscores in rails?
Hi all - My boss is asking me if we can have dashes instead of underscores in the URL for SEO reasons. Apparently google prefers "foo-bar" to "foo_bar". The former will be found when searching for just "foo", but not the latter. So, I''m wondering if there is a way without changing any of my code if I can tell rails to use dashes instead of underscores?
2006 May 15
5
Login generator errors.
Okay, I download login generator and I used it on my new app but, it''s not working correctly. If the user logins on the same session as he created he will login if it isn''t the same session it fails. What''s going on? -- Posted via http://www.ruby-forum.com/.
2006 May 04
2
validates :on 2
Hello, I need to have this for :create and :login how do I do so validates_presence_of :login, :password, :password_confirmation, :user_name, :email, :on => :create I do need it to be off in a number of places though -- Posted via http://www.ruby-forum.com/.
2006 May 08
2
Server time.
Hello I just set up my db to save Time(now)(IN SQL not ruby''s Time.now) But, this is local user time correct? If not or even so I would also like to be able to call servers Time.now in my app so how can I do this? Thanks in advance, noobie Mohammad -- Posted via http://www.ruby-forum.com/.