I built a function with login system, but when I press CTRL + F5 my session dies for the user. Can I change CTRL + F5 settings?
Asked
Active
Viewed 1,059 times
0
-
This is a browser "problem". F5 is normally sufficient anyway. – Pete Jul 16 '12 at 13:58
-
2That does not happen normally. What browser are you using? Supply some of your php code so we can review for you. – random_user_name Jul 16 '12 at 13:58
-
More detail. Any relevant code? Browser? Etc... – Piskvor left the building Jul 16 '12 at 13:58
2 Answers
0
The Ctrl+F5 is the refresh without "data". You can try using cookies for your sessions or try changing your "php.ini" configurations for session.

Anirudh Ramanathan
- 46,179
- 22
- 132
- 191

Estefano Salazar
- 419
- 4
- 15
0
You should maybe try using cookies to manage your sessions. I also found this SO question describing the effect of Ctrl+F5 on browsers:
What requests do browsers' "F5" and "Ctrl + F5" refreshes generate?