PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
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
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.