0

I've got an warning message with my site saying "session_start(): open(/home/content/55/5307955/tmp/sess_qphb8rav2kmt5kavptqh1mik06, O_RDWR) failed: No such file or directory (2) ". I've been reading basics about PHP session and seesion_start(), so far I understand that when session_start it either starts a new session or resume the existing session. What does it have to do with opening a file?

shenkwen
  • 3,536
  • 5
  • 45
  • 85

1 Answers1

0

Check the directory permissions on that directory structure. It can't open (or create) the tmp files need to store session data.

Difster
  • 3,264
  • 2
  • 22
  • 32