I am running a PHP application on an apache server. Where can I find the session files that the server creates? is there a standard file name for php sessions?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Normally they are stored under
/tmp. You can also checksession.save_pathin thephp.ini(or usephpinfo();) for more details.Sometimes they are also stored in a database. You might want to check if
session.save_handleris set tofiles.