Page 1 of 1

New learner's question

Posted: Tue May 25, 2004 12:24 am
by artfhc
I couldn't use session_start() method, and it occured errors. After that I figured out that I need to change the session.save_path to a disk location. since I'm using window. The problem is that I have no idea where to change it. I have been finding in httpd configuration file, but I couldn't find anything about session. Please help me. :?:

Posted: Tue May 25, 2004 12:29 am
by feyd
php.ini ... it should be located in your windows root folder.

Posted: Tue May 25, 2004 3:58 pm
by artfhc
thx man.

Posted: Tue May 25, 2004 4:27 pm
by Joe
What exactly was the error. Do you know that session_start() should be used before any type of output. I just use:

<?php
session_start();
?>

at the start of each form which uses PHPSessions...