Hello everybody.
I get some "session_start warning" messages but everuthing seems to working fine !!!
Any ideas about these annoying warnings?
Thanks in advance...
session_start warning !!!
Moderator: General Moderators
Warning: session_start(): open(/tmp\sess_3e9b7822ff34f10f67512ef55430cb66, O_RDWR) failed: No such file or directory (2) in "folder name"
Warning: session_start(): Cannot send session cookie
Warning: session_start(): Cannot send session cache limiter - headers already sent
Warning: Cannot modify header information - headers already sent
thanks in advance...
Warning: session_start(): Cannot send session cookie
Warning: session_start(): Cannot send session cache limiter - headers already sent
Warning: Cannot modify header information - headers already sent
thanks in advance...
-
TheBentinel.com
- Forum Contributor
- Posts: 282
- Joined: Wed Mar 10, 2004 1:52 pm
- Location: Columbus, Ohio
Once the first error throws the text to the browser, the headers (where the cookie will go) have already been sent. If you correct the first error, you'll probably fix them all.dmakris wrote:Warning: session_start(): open(/tmp\sess_3e9b7822ff34f10f67512ef55430cb66, O_RDWR) failed: No such file or directory (2) in "folder name"
Warning: session_start(): Cannot send session cookie
Warning: session_start(): Cannot send session cache limiter - headers already sent
Warning: Cannot modify header information - headers already sent
thanks in advance...
What code are you running on start of a session? Can you paste it here?