Hello,
I just have installed php's latest version 5.2.0

Getting the following error when I am trying to login which uses sessions.

PHP Warning: session_start() [function.session-start]: open(\sessions\sess_al3rqrq48n4a6mhqnfsf6qkcv4, O_RDWR) failed: No such file or directory (2) in C:\Inetpub\wwwroot\mysite\me.php on line 2 PHP Notice: Undefined index: access in C:\Inetpub\wwwroot\mysite\me.php on line 3 PHP Warning: Unknown: open(\sessions\sess_al3rqrq48n4a6mhqnfsf6qkcv4, O_RDWR) failed: No such file or directory (2) in Unknown on line 0 PHP Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (\sessions) in Unknown on line 0 

Remember I have changed the session path in php.ini as follows:

upload_tmp_dir="\upload"
session.save_path="\sessions"

Remember above folders have write permissions!

What should I do to get it to work?

    I guess you need the full path(with drive letter) whn using windows:
    session.save_path="C:\sessions"

      Write a Reply...