Working in win98 using php I've run into a strange problem. It seems that I can't change the session.save_path in php.ini. In fact I doubt php.ini is being read at all.
phpinfo() is telling me that "Configuration File (php.ini) Path = c:\winnt", but the only php.ini on my system resides in
c:\windows\system
The default setting of session.save_path is "/tmp" - and when I make a directory called c:\tmp things work fine, but when I try to change the directory - writing "session.save_path = "C:\windows\temp" it doesn't
compute. phpinfo() still tells me that "session.save_path = /tmp"
Could this be because of the configuration File Path being set wrongly
- and if so how the devil do I change this setting. And how come php
is working at all if it looks for a configuration file in a
non-existing directory?