https://www.peoplewhotravel.com/Trips/showTrip?id_parametre=84&id_voyage_serveur=227&langue=fr&nom_voyage=Californie

Exceptions

Warning: SessionHandler::write(): write failed: No space left on device (28)

Exception

ErrorException

  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     protected function doWrite($sessionId$data)
  5.     {
  6.         return $this->handler->write($sessionId$data);
  7.     }
  8.     /**
  9.      * @return bool
  10.      */
  1.         if ('' === $data || $this->igbinaryEmptyData === $data) {
  2.             return $this->destroy($sessionId);
  3.         }
  4.         $this->newSessionId null;
  5.         return $this->doWrite($sessionId$data);
  6.     }
  7.     /**
  8.      * @return bool
  9.      */
  1.     /**
  2.      * @return bool
  3.      */
  4.     public function write($sessionId$data)
  5.     {
  6.         return (bool) $this->handler->write($sessionId$data);
  7.     }
  8.     /**
  9.      * @return bool
  10.      */
SessionHandlerProxy->write()
  1.             return $previousHandler $previousHandler($type$msg$file$line) : false;
  2.         });
  3.         try {
  4.             session_write_close();
  5.         } finally {
  6.             restore_error_handler();
  7.             // Restore only if not empty
  8.             if ($_SESSION) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function save()
  5.     {
  6.         $this->storage->save();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.              * can still operate on the open session. This prevents the overhead of restarting it.
  2.              * Listeners after closing the session can still work with the session as usual because
  3.              * Symfonys session implementation starts the session on demand. So writing to it after
  4.              * it is saved will just restart it.
  5.              */
  6.             $session->save();
  7.         }
  8.     }
  9.     /**
  10.      * @internal
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
in vendor/symfony/http-kernel/HttpKernel.php -> filterResponse (line 179)
  1.                 throw new ControllerDoesNotReturnResponseException($msg$controller__FILE____LINE__ 17);
  2.             }
  3.         }
  4.         return $this->filterResponse($response$request$type);
  5.     }
  6.     /**
  7.      * Filters a response object.
  8.      *
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 36)
  1. $kernel = new Kernel($env$debug);
  2. $request Request::createFromGlobals();
  3. $response $kernel->handle($request);
  4. $response->send();
  5. $kernel->terminate($request$response);

Stack Trace

ErrorException

ErrorException:
Warning: SessionHandler::write(): write failed: No space left on device (28)

  at vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php:64
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler->doWrite()
     (vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php:123)
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\AbstractSessionHandler->write()
     (vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php:67)
  at Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy->write()
  at session_write_close()
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:268)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->save()
     (vendor/symfony/http-foundation/Session/Session.php:189)
  at Symfony\Component\HttpFoundation\Session\Session->save()
     (vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:121)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->onKernelResponse()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:191)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse()
     (vendor/symfony/http-kernel/HttpKernel.php:179)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:36)