vote up 1 vote down star

I have not changed any of the configuration options for sessions in my php.ini.

session.save_handler = "files"
session.save_path    = ""
session_save_path()  = ""

From what I read, if I change php.ini to something like, session.save_path = "c:\tmp\", all the session will be stored as files in c:\tmp.

My question is, how/where are the sessions being stored when I use the default configuration?

flag

69% accept rate

2 Answers

vote up 3 vote down check

I would imagine it's wherever your OS stores temp files by default

In *nix it's /tmp/

In Windows I believe it's C:\Windows\Temp

link|flag
vote up 1 vote down

They should be saved in the system temporary directory - usually something like c:\windows\temp

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.