Hello, I'm a first time poster here.
I'm trying to run a very simple php script using sessions on my school's IIS server configured with PHP, and I'm getting a strange error.
The PHP code looks like this:
<?
session_start();
session_register("sess_var");
$sess_var = "Hello world!";
echo "The content of \$sess_var is $sess_var<br>";
?>
and the output looks like this:
Warning: open(C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sess_2f83933bc5e9bce420915c740c01685d, O_RDWR) failed: m (13) in D:\resources\Students\chris-johnson\clickonchris\page1.php on line 3
The content of $sess_var is Hello world!
Warning: open(C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sess_2f83933bc5e9bce420915c740c01685d, O_RDWR) failed: m (13) in Unknown on line 0
Warning: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp) in Unknown on line 0
of course, you can see by yourself by going clicking here
Can I get some input from some of you PHP pros?
Thanks