In my php.ini file I have:
session.save_path = E:\Program Files\PHP\sessiondata
Which causes the error(s) when I use session functions:
Warning: open(E:\Program Files\PHP\sessiondata\sess_9607d351a8a0628970418203b747682b, 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 (E:\Program Files\PHP\sessiondata) in Unknown on line 0
If I change the path to something without a space it works fine. Any way to use a path with a space in it? I've tried single and double quotes around it, but that doesn't work either. Kind of weird because there are other paths with spaces in php.ini and they don't cause a problem, plus I've seen examples of session.save_path using paths with spaces too.