Help with PHP Session Start
my program gives me this error, - Warning-PHP Function_start();开发者_运维问答 C:/PHp\tmp no such file or directory.
What do i do?
the session save thingy is pointing to windows temp.
Thank You
This basically means, that PHP is trying to store the session data in a directory which doesn't exist. Make sure that C:/PHP/tmp is actually a valid directory.
double check that the session save path (c:\PHP\tmp) is a valid directory. Also you can check php.ini and look at the session.save_path config option to see what it is set to. You might need to change it to another folder.
Make sure your files inside that directory are not corrupted. Have you edited these files at all? Check if all the files are there what should be there.
精彩评论