I have several sites hosted on the same server, in different directories (e.g: server.com/site_one, server.com/site_two) and I want to store the session files for each site in a different directory.
How do I do that?

Thanks!

link|improve this question
feedback

migrated from superuser.com Sep 11 '10 at 11:20

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 2 down vote accepted

If you're running PHP as an Apache2 module, the following should work for you.

In the folder you want to change the session path (e.g site.com/site_one), create a .htaccess file with the following in it:
php_value session.save_path "/path/to/separate/sessions/site_one".

Repeat this and change the directory for each folder you want to have a separate session path.

link|improve this answer
great! thanks a lot! – Alex Sep 11 '10 at 12:09
feedback

Your Answer

 
or
required, but never shown

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