Wierd Warnings

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
In a session authentication system I built for my site, I am getting these weird warnings that I have never got before:
PHP:
Warning:  Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning:  Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line 0
I have not edited the site, or have my cookies disabled. The warnings only appear when the site is given the correct login information. Whats going on?
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Your system can't save the Session-data files that are stored on the server when you do a session_start() and try to start saving data.

No idea how to fix it but that's what it boils down to - soon as it goes to save something, it's unable to.


Edit: Huh, you aren't the only one. 20 ImagiBux says you're on chopin like this guy: http://forums.x10hosting.com/off-to...-6-14-09-news-thread-response.html#post549940

Seems the server in question may have no hdd space left, to the point that it can't even save a session :S
 
Last edited:

Twinkie

Banned
Messages
1,389
Reaction score
12
Points
0
Thanks zenr for making the relation and yes I did read the server alerts. You would think the warnings would be more like, this function is disabled or doesn't exist.
 
Top