Reputation: 18790
Please tell me how apache server store each logged user's session details.
Upvotes: 2
Views: 5705
Reputation: 157887
I have never heard of Apache storing any session details.
Apache is HTTP demon and HTTP is stateless protocol, with no session support.
You're probably talking of some language emulates stateful connection, using cookie or query string to pass a session identifier.
Upvotes: 1
Reputation: 91953
PHP stores session data as text files on disk. The browser is then assigned a cookie which identifies which session that belongs to that browser.
Upvotes: 0
Reputation: 39763
Basically in PHP Sessions, the server will use eithers cookies or URL rewriting.
Upvotes: 0