[Warning] session_start(): open(/var/lib/php/sessions/sess_6p7pmf8i5l01cb5sj7m5v9cd0d, O_RDWR) failed: No space left on device (28) (@line 150 in file /var/www/bacularis/protected/vendor/pradosoft/prado/framework/Web/THttpSession.php).
${PradoFramework}/Web/THttpSession.php (150)
0139: if ($this->_customStorage) {
0140: session_set_save_handler([$this, '_open'], [$this, '_close'], [$this, '_read'], [$this, '_write'], [$this, '_destroy'], [$this, '_gc']);
0141: }
0142: if ($this->_cookie !== null) {
0143: if (PHP_VERSION_ID >= 70300) {
0144: session_set_cookie_params($this->_cookie->getPhpOptions('lifetime'));
0145: } else {
0146: session_set_cookie_params($this->_cookie->getExpire(), $this->_cookie->getPath(), $this->_cookie->getDomain(), $this->_cookie->getSecure(), $this->_cookie->getHttpOnly());
0147: }
0148: }
0149: if (ini_get('session.auto_start') !== '1') {
0150: session_start();
0151: }
0152: $this->_started = true;
0153: }
0154: }
0155:
0156: /**
0157: * Ends the current session and store session data.
0158: */
0159: public function close()
0160: {
0161: if ($this->_started) {
0162: session_write_close();
#0 [internal function]: Prado\Prado::phpErrorHandler()
#1 ${PradoFramework}/Web/THttpSession.php(150): session_start()
#2 ${PradoFramework}/Security/TAuthManager.php(296): Prado\Web\THttpSession->open()
#3 ${PradoFramework}/Security/TAuthManager.php(168): Prado\Security\TAuthManager->onAuthenticate()
#4 ${PradoFramework}/TComponent.php(1253): Prado\Security\TAuthManager->doAuthentication()
#5 ${PradoFramework}/TApplication.php(1198): Prado\TComponent->raiseEvent()
#6 ${PradoFramework}/TApplication.php(386): Prado\TApplication->onAuthentication()
#7 ${DocumentRoot}/index.php(43): Prado\TApplication->run()
#8 {main}