| Question : | Why do I get "Warning: open(/tmp\sess_03416739e8d8712a1489aa6bb6bdf19d, O_RDWR)" failed ?
| | Answer : | If you are using windows you need to make a change to the default php.ini file to define where session files need to be written. The option you need to edit is:
session.save_path = /tmp
You have to point it to your temp directory.
| | |