Tagged Questions

1
vote
2answers
35 views

Automatic Login with Rails?

Hey there, I am trying to get up a simple authentication system with Rails' Restful-Authentication plugin, and am just wondering how it works, b/c I can't seem to figure out what …
0
votes
2answers
57 views

Session Management (Zend Framework specific)

I'm trying to get the rememberMe() function to remember users and retain sessions for months at a time. I've read that if you pass a value through rememberMe() it will not work i …
1
vote
2answers
83 views

Zend Framework rememberMe() doesnt seem to remember me

My session seems to only be valid in the current window/tab. Also it seems to timeout quickly. Heres how I'm currently attempting to do it: This is in my login controller: $adapt …
1
vote
1answer
32 views

Implement a “Remember me” CheckBox in windows application?

Hello I am creating a Windows application (WPF) that is going to be running in few stations accessing 1 database. I already implemented a login form with a login system thru My.Us …
0
votes
1answer
122 views

Implementing “Remember me” Functionality in ASP.NET

What is the best way to implement 'remember me' functionality on an ASP.NET web site? Should I use custom cookies or is there a simpler method?
0
votes
2answers
53 views

logging in, logging out & session behavior

When you log out of a web app, should ALL your session be logged out? When I log out of the web app from the public library, should it also log me out of the session I have on my …
3
votes
3answers
349 views

Best way for authentication in PHP

Hi Folks, What's the best and most secure way to go when writing an authentication library in a model-view-controller way? The things that give me a hard time are keeping track o …
0
votes
1answer
190 views

PHP, remember me login form? [closed]

Hi, I want to do a login form which has "remember me"(using cookie) and login attempts(no more than 5) features. It may sound general, but I am new to programming language, so I wa …
2
votes
3answers
222 views

Is this a reasonable way to implement ‘remember me’ functionality.

If a user logs into the site, and says 'remember me', we get the unique identifier for the user, encrypt this with RijndaelManaged with a keysize of 256 and place this in a httponl …