[Warning] session_start(): open(/tmp/sess_088d4ca9ab67932c938963a080933e83, O_RDWR) failed: No space left on device (28) (@line 142 in file /hsphere/local/home/mondia101/mondia.ae/Prado/framework/Web/THttpSession.php).
/hsphere/local/home/mondia101/mondia.ae/Prado/framework/Web/THttpSession.php (142)
0131: /**
0132: * Starts the session if it has not started yet.
0133: */
0134: public function open()
0135: {
0136: if(!$this->_started)
0137: {
0138: if($this->_customStorage)
0139: session_set_save_handler(array($this,'_open'),array($this,'_close'),array($this,'_read'),array($this,'_write'),array($this,'_destroy'),array($this,'_gc'));
0140: if($this->_cookie!==null)
0141: session_set_cookie_params($this->_cookie->getExpire(),$this->_cookie->getPath(),$this->_cookie->getDomain(),$this->_cookie->getSecure());
0142: session_start();
0143: $this->_started=true;
0144: }
0145: }
0146:
0147: /**
0148: * Ends the current session and store session data.
0149: */
0150: public function close()
0151: {
0152: if($this->_started)
0153: {
0154: session_write_close();
#0 [internal function]: PradoBase::phpErrorHandler(2, 'session_start()...', '/hsphere/local/...', 142, Array)
#1 /hsphere/local/home/mondia101/mondia.ae/Prado/framework/Web/THttpSession.php(142): session_start()
#2 /hsphere/local/home/mondia101/mondia.ae/Prado/framework/Security/TAuthManager.php(205): THttpSession->open()
#3 /hsphere/local/home/mondia101/mondia.ae/Prado/framework/Security/TAuthManager.php(134): TAuthManager->onAuthenticate(NULL)
#4 /hsphere/local/home/mondia101/mondia.ae/Prado/framework/TComponent.php(364): TAuthManager->doAuthentication(Object(TApplication), NULL)
#5 /hsphere/local/home/mondia101/mondia.ae/Prado/framework/TApplication.php(924): TComponent->raiseEvent('OnAuthenticatio...', Object(TApplication), NULL)
#6 /hsphere/local/home/mondia101/mondia.ae/Prado/framework/TApplication.php(346): TApplication->onAuthentication()
#7 /hsphere/local/home/mondia101/mondia.ae/index.php(11): TApplication->run()
#8 {main}