----- Original Message -----
From: "bryan_is_south"
> Hello Bryan,
>
> Your session save path is wrong.
>
> It is pointing to c:/tmp\ which does not exist.
>
> Open your php.ini file in a text editor.
> It should be in c:\phpdev5\bin\php\ or c:\phpdev5\bin\php\phpx.x.x\
>
> Make sure of the path to your temporary directory exists.
> It should be c:\phpdev5\tmp\
>
> In php.ini look for the setting session.save_path
> Change '/tmp' to the correct setting. This should be -
> 'c:\phpdev5\tmp'
>
> Then you must restart your server.
>
> Thanks, Robert.
>
-----------------------
Hello Robert and others,
I have made sure that all my slashes are \ now, but still I am getting
the same messages (and I do restart my Apache after each change I make).
Should there already be a folder called 'tmp' or do I make this folder
myself?
Also, in php.ini, is the doc_root important too, because I have been
changing that too, but I don't know exactly what it should say.
Right now, these two lines look like this:
doc_root = "C:\phpdev5\www\Metalopia Website\"
session.save_path = "phpdev5\tmp\"
But of course I've tried several combinations of changing little
things, like removing quotations, removing the final slash, altering
the beginning of the paths, etc.
Any further information on what I am doing wrong? All help is appreciated.
Thank you,
-bryan
------------------------------------
Hi,
I thought doc_root was simply HTTP_root so it shouldn't need to be changed
from what you have.
Try -
doc_root = "C:\phpdev5\www\Metalopia Website"
session.save_path = "C:\phpdev5\tmp" <-- create this if it doesn't already
exist.
No trailing slashes.