Windows 2K install problems

Windows 2K install problems

by Peter Fullarton -
Number of replies: 3

I've followed the install scipt, but encountered a lot of 'warning' messages.  Now the install is al done, I get this message.....

Warning: It appears your server does not support sessions (session.save_path = '/tmp')




' + inobj[objprop] + '\n');
}
op.document.close();
}

function fillmessagebox(text) {
document.form.message.value = text;
}

function openpopup(url,name,height,width) {
fullurl = "http://engish.oncole.com" + url;
options = "menubar=0,location=0,scrollbars,resizable,width="+width+",height="+height;
windowobj = window.open(fullurl,name, options);
windowobj.focus();
}

function copyrichtext(textname) {
textname.value = document.richedit.docHtml;
return true;
}


// done hiding -->

Followed by these on nearly every page I try to access......

Warning: session_start() [function.session-start]: open(/tmp\sess_55abd7f8e846a60471b9b071418d9d66, O_RDWR) failed: No such file or directory (2) in c:\production web sites\moodle\lib\setup.php on line 123

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at c:\production web sites\moodle\lib\setup.php:123) in c:\production web sites\moodle\lib\setup.php on line 123

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at c:\production web sites\moodle\lib\setup.php:123) in c:\production web sites\moodle\lib\setup.php on line 123

Any ideas?

' + inobj[objprop] + '\n'); } op.document.close(); } function fillmessagebox(text) { document.form.message.value = text; } function openpopup(url,name,height,width) { fullurl = "http://engish.oncole.com" + url; options = "menubar=0,location=0,scrollbars,resizable,width="+width+",height="+height; windowobj = window.open(fullurl,name, options); windowobj.focus(); } function copyrichtext(textname) { textname.value = document.richedit.docHtml; return true; } // done hiding -->
Average of ratings: -
In reply to Peter Fullarton

Re: Windows 2K install problems

by Martin Dougiamas -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
Sessions need a temporary directory to save information in. Your php.ini file specifies this directory as "/tmp" which doesn't exist on Windows. You should edit php.ini, and change this to "C:\temp" or some other directory that exists. Make sure you restart the web server to make the changes take effect.
In reply to Martin Dougiamas

Re: Windows 2K install problems

by Peter Fullarton -
Thanks.  I'm checking this out now - I'll let you know the outome.
In reply to Peter Fullarton

Re: Windows 2K install problems

by Peter Fullarton -
Thanks, I got past this problem but have encoutered another - T've placed this problem at the top level........Thanks.