I\'ve got a PHP-driven MySQL app running on an Linux/Apache web server, and all was working great until I installed an Arcserve backup agent on the box. Now for some odd reason, nobody can log in. When the login script hits the session_start() function, it issues the message: Warning: open(/tmp/sess_6577550372d9d47f76b4b2dd927da37c, O_RDWR) failed: No space left on device (28)
Obviously, it\'s not writing the session record to the /tmp directory. Needless to say, I\'ve checked the space and there\'s over half a gig free. I also had a look at the permissions on the /tmp directory and they\'re fine too.
I\'m stumped. Any ideas?
Chris