Page 2 of 2
Posted: Wed Apr 14, 2004 11:42 am
by stanfish
but the file "files" is located in the "temp" folder. Do I need to put it outside the folder?
Posted: Wed Apr 14, 2004 11:44 am
by markl999
Nope, the session.save_handler doesn't refer to a directory/folder, it refers to the method to use, you want to use files to store them, not /temp/files

Posted: Wed Apr 14, 2004 11:51 am
by stanfish
Should I restart the computer after changing the php.ini? I noticed that php.ini is located in my windows folder and Apache folder.
Posted: Wed Apr 14, 2004 11:53 am
by markl999
Yep, edit the php.ini in your windows folder and make the change there, also, as you're on windows you'll need to change :
session.save_path = /temp
to
session.save_path = c:\temp
(or some other temporary directory that exists)
Then restart apache.
Posted: Wed Apr 14, 2004 3:27 pm
by stanfish
Thank you very much!!!
It works pretty good now..
Thanks again!