A
Anonymous
Guest
batookee said:Code:Warning: session_start(): open(/tmp\sess_d85669851e0b2830838acd86482806bb, O_RDWR) failed: No such file or directory (2) in C:\apache\Apache2\htdocs\Xplorer\index.php on line 3[/quote] This is the one that matters. Sessions require a place to be stored, and this place is indicated in your php.ini by "session.save_path". The default is /tmp. If that directory doesn't exist, PHP pukes, as above. So, either you need to create a directory called /tmp, or you need to switch your session.save_path to another one that does exist (e.g. /windows/temp).