View Single Post
  #1 (permalink)  
Old 09-12-2006, 12:10
cty cty is offline
Junior Member
 
Join Date: Dec 2006
Posts: 5
Default Problem in session using PHP5

Title: Problem in session using php5




Good day,

I use php5+mySQL4+IIS5.x

Previuosly i use php4 and no error occur,
after i uninstall php4 and install php5,
error happen.
--------------------------------
error message:
24lmnsndeh7pkibp65mttcajo7PHP Warning: Module 'mysql' already loaded in Unknown on line 0 PHP Warning: session_start() [function.session-start]: open(C:\DOCUME~1\CTY\LOCALS~1\Temp\php\upload\sess _24lmnsndeh7pkibp65mttcajo7, O_RDWR) failed: No such file or directory (2) in C:\cty\test.php on line 2 PHP Warning: Unknown: open(C:\DOCUME~1\CTY\LOCALS~1\Temp\php\upload\sess _24lmnsndeh7pkibp65mttcajo7, 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 (C:\DOCUME~1\CTY\LOCALS~1\Temp\php\upload) in Unknown on line 0
----------------------------------------------------
my code to test:

<?php
session_start();
print session_id();

?>
------------------------------------------------------------
If i test my code in php4,is work well!but when i change to php5,it have error.
i check my php via phpinfo(); ,
i found something unnormal:

session.save_path---> C:\DOCUME~1\CTY\LOCALS~1\Temp\php\upload

What should i do?
How to setup php5+IIS5.x with the correct method?
What should i check after setup?
Hope u may provide me a good solution on y problem since i post my problem to many forums but no one able to solve.
TQ

Last edited by cty; 09-12-2006 at 12:12.
Reply With Quote