Where is the session data stored? #438
Replies: 2 comments 2 replies
-
The issue I am facing is that the user gets logged out when my kubernetes pod restarts or gets killed. This happens even when I still have the wordpress_sec cookie in my browser, and the |
Beta Was this translation helpful? Give feedback.
-
@dushyantbangal sorry for the delay in responding to you question. I've converted this to a Q&A Discussion topic. To answer your question the plugin doesn't establish its own session but establishes a standard WordPress session. The only additional aspect however is that there are some states stored in the database, and there is a refresh token item that can cause a WordPress session to be logged out if the IDP puts a limit on the length of a logged in session. |
Beta Was this translation helpful? Give feedback.
-
Does the plugin manage sessions by itself? If yes, where is the session related data stored?
Initially I thought it might be using the php session management itself. But there are no files in
/tmp
directory after I login in my application. However I see files in the/tmp
directory when I just added a php file which doessession_start()
and accessed that file's URL via my browser.Are there any settings that I should be looking at for this?
Beta Was this translation helpful? Give feedback.
All reactions