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?