Page 1 of 1

Sessions...

Posted: Tue Dec 09, 2003 9:32 pm
by Freak
Okay, I have Php 4.3.4 installed and functioning perfect, except for one thing. My Sessions constantly try to open into windows/temp, or some other temporary folder, for some reason. Session.save_path (sp?) is set to a folder that exists, and is in my Servers folder (not hosted though, for obvious security reasons). Anyone know why I'm unable to get a functional session? And yes, my code's been tested on a working server, there is no problem in the code itself.

Sorry if this is in the wrong forum, but it seems the best choice.

Posted: Wed Dec 10, 2003 12:49 am
by mathewvp
Have you checked the location of sessions folder in the php.ini file?

Posted: Wed Dec 10, 2003 4:51 am
by twigletmac
Sometimes the wrong php.ini file gets edited, check the output of

Code: Select all

<?php phpinfo(); ?>
to ensure that you are editing the php.ini that PHP is using.

Mac