Questions tagged [remember-me]

A way to store personal information to make it easier for a user to fill in forms or login to websites at a later time.

A "remember me" option is often used on login forms on websites. It is represented as a checkbox labeled "remember me" and stores either the username or a login token to re-login the user when visiting the website again.

525 questions
0
votes
1 answer

Symfony FOSUserBundle Remeber me doesn't work

I'm using FOSUserBundle with email as username. Tryin' to use the remember_me functionality but it's not working. I've read this Symfony2: "Remember me" tries to authenticate by username instad of email It's quite an old article and the username…
Jack Skeletron
  • 1,351
  • 13
  • 37
0
votes
1 answer

Zend framework rememberMe without bootstrap

I have app, in ZF1, where is not bootstrap. In config I have: resources.session.save_path = APPLICATION_PATH "/../tmp/session" resources.session.remember_me_seconds = 315360000 resources.session.gc_maxlifetime = 315360000 Folder tmp/session is set…
tomasr
  • 485
  • 1
  • 8
  • 24
0
votes
3 answers

the auth_key of yii2 is'nt interference in cookie base

I have problem with auth_key , I have login form and it's work correctly without remember me and with remember me , but I read yii document , in that document wrote about remember me work with id and auth_key for create cookie to stay user in long…
mohammad zahedi
  • 313
  • 3
  • 17
0
votes
3 answers

One Page Multilingual Website using only CSS and PHP

Given a simple static website with only a homepage and two other pages, each containing text in two langages: English and Dutch. All contents should be held in a single php file per page:
  • About
Sam
  • 15,254
  • 25
  • 90
  • 145
0
votes
1 answer

Context initialization failed. Spring error NoSuchMethodException

I obtain this error when I try to launch Hybris platform at runtime: WARN [localhost-startStop-1] [TenantIgnoreXmlWebApplicationContext] Exception encountered during context initialization - cancelling refresh at tempt:…
sharkbait
  • 2,980
  • 16
  • 51
  • 89
0
votes
1 answer

Implementing remember me with .NET Identity

I have wrote a code like following: if (user.PasswordHash == Helpers.PasswordHelper.CreatePasswordHash(model.Password, user.PasswordSalt)) { ClaimsIdentity identity = new…
User987
  • 3,663
  • 15
  • 54
  • 115
0
votes
0 answers

Remember me Login page with JSP Servlet using database at backend?

This is my login JSP. And its working - means: values are going to servlet. Login || Dreamer