Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/ebaris/public_html/app/src/Controller/BaseController.php on line 107

Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/ebaris/public_html/app/src/Controller/BaseController.php on line 117
Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time (500 Internal Server Error)

Symfony Exception

ErrorException ErrorException

HTTP 500 Internal Server Error

Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

Exceptions 2

ErrorException

  1.         if ($baseDir && !is_dir($baseDir) && !@mkdir($baseDir0777true) && !is_dir($baseDir)) {
  2.             throw new \RuntimeException(sprintf('Session Storage was not able to create directory "%s".'$baseDir));
  3.         }
  4.         if ($savePath !== \ini_get('session.save_path')) {
  5.             ini_set('session.save_path'$savePath);
  6.         }
  7.         if ('files' !== \ini_get('session.save_handler')) {
  8.             ini_set('session.save_handler''files');
  9.         }
  10.     }
  1.         if (isset($this->privates['session.factory'])) {
  2.             return $this->privates['session.factory'];
  3.         }
  4.         return $this->privates['session.factory'] = new \Symfony\Component\HttpFoundation\Session\SessionFactory(($this->services['request_stack'] ?? ($this->services['request_stack'] = new \Symfony\Component\HttpFoundation\RequestStack())), new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory($this->parameters['session.storage.options'], new \Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler(new \Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler(($this->targetDir.''.'/sessions'))), new \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag('_sf2_meta'0), true), [=> $a=> 'onSessionUsage']);
  5.     }
  6.     /**
  7.      * Gets the private 'session_listener' shared service.
  8.      *
  1.      *
  2.      * @return \Symfony\Component\HttpFoundation\Session\Session
  3.      */
  4.     protected function get_Container_Private_SessionService()
  5.     {
  6.         $a = ($this->privates['session.factory'] ?? $this->getSession_FactoryService());
  7.         if (isset($this->services['.container.private.session'])) {
  8.             return $this->services['.container.private.session'];
  9.         }
in /home/ebaris/public_html/app/vendor/symfony/dependency-injection/Container.php -> get_Container_Private_SessionService (line 423)
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load $this->load($method) : $this->{$method}();
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}();
  10.         }
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function get(string $id)
  5.     {
  6.         return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     }
  2.     protected function getSession(): ?SessionInterface
  3.     {
  4.         if ($this->container->has('session')) {
  5.             return $this->container->get('session');
  6.         }
  7.         if ($this->container->has('session_factory')) {
  8.             return $this->container->get('session_factory')->createSession();
  9.         }
  1.         if (!$request->hasSession()) {
  2.             // This variable prevents calling `$this->getSession()` twice in case the Request (and the below factory) is cloned
  3.             $sess null;
  4.             $request->setSessionFactory(function () use (&$sess$request) {
  5.                 if (!$sess) {
  6.                     $sess $this->getSession();
  7.                     $request->setSession($sess);
  8.                     /*
  9.                      * For supporting sessions in php runtime with runners like roadrunner or swoole, the session
  10.                      * cookie needs to be read from the cookie bag and set on the session storage.
in /home/ebaris/public_html/app/vendor/symfony/http-foundation/Request.php -> Symfony\Component\HttpKernel\EventListener\{closure} (line 735)
  1.      */
  2.     public function getSession()
  3.     {
  4.         $session $this->session;
  5.         if (!$session instanceof SessionInterface && null !== $session) {
  6.             $this->setSession($session $session());
  7.         }
  8.         if (null === $session) {
  9.             throw new SessionNotFoundException('Session has not been set.');
  10.         }
  1.      * @return bool
  2.      */
  3.     public function hasPreviousSession()
  4.     {
  5.         // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
  6.         return $this->hasSession() && $this->cookies->has($this->getSession()->getName());
  7.     }
  8.     /**
  9.      * Whether the request contains a Session object.
  10.      *
  1.         if (null !== $this->matcher && !$this->matcher->matches($request)) {
  2.             return;
  3.         }
  4.         $session $request->hasPreviousSession() && $request->hasSession() ? $request->getSession() : null;
  5.         if ($session instanceof Session) {
  6.             $usageIndexValue $usageIndexReference = &$session->getUsageIndex();
  7.             $usageIndexReference = \PHP_INT_MIN;
  8.         }
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  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.     }
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.         $throwable $event->getThrowable();
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), $e->getFile(), $e->getLine()));
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  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.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /home/ebaris/public_html/app/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 607)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 return $exceptionHandler($exception);
  6.             }
  7.             $handlerException $handlerException ?: $exception;
  8.         } catch (\Throwable $handlerException) {
  9.         }
  10.         if ($exception === $handlerException && null === $this->exceptionHandler) {
ErrorHandler->handleException(object(ErrorException))

ErrorException

Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

  1.         if ($baseDir && !is_dir($baseDir) && !@mkdir($baseDir0777true) && !is_dir($baseDir)) {
  2.             throw new \RuntimeException(sprintf('Session Storage was not able to create directory "%s".'$baseDir));
  3.         }
  4.         if ($savePath !== \ini_get('session.save_path')) {
  5.             ini_set('session.save_path'$savePath);
  6.         }
  7.         if ('files' !== \ini_get('session.save_handler')) {
  8.             ini_set('session.save_handler''files');
  9.         }
  10.     }
  1.         if (isset($this->privates['session.factory'])) {
  2.             return $this->privates['session.factory'];
  3.         }
  4.         return $this->privates['session.factory'] = new \Symfony\Component\HttpFoundation\Session\SessionFactory(($this->services['request_stack'] ?? ($this->services['request_stack'] = new \Symfony\Component\HttpFoundation\RequestStack())), new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory($this->parameters['session.storage.options'], new \Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler(new \Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler(($this->targetDir.''.'/sessions'))), new \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag('_sf2_meta'0), true), [=> $a=> 'onSessionUsage']);
  5.     }
  6.     /**
  7.      * Gets the private 'session_listener' shared service.
  8.      *
  1.      *
  2.      * @return \Symfony\Component\HttpFoundation\Session\Session
  3.      */
  4.     protected function get_Container_Private_SessionService()
  5.     {
  6.         $a = ($this->privates['session.factory'] ?? $this->getSession_FactoryService());
  7.         if (isset($this->services['.container.private.session'])) {
  8.             return $this->services['.container.private.session'];
  9.         }
  1.         $instance->addExtension(new \Symfony\Bridge\Twig\Extension\SerializerExtension());
  2.         $instance->addExtension(new \Symfony\Bridge\Twig\Extension\FormExtension($c));
  3.         $instance->addExtension(new \Symfony\Bridge\Twig\Extension\DumpExtension(($this->services['var_dumper.cloner'] ?? $this->getVarDumper_ClonerService()), ($this->privates['var_dumper.html_dumper'] ?? $this->getVarDumper_HtmlDumperService())));
  4.         $instance->addExtension(new \Symfony\Bridge\Twig\Extension\LogoutUrlExtension(($this->privates['security.logout_url_generator'] ?? $this->getSecurity_LogoutUrlGeneratorService())));
  5.         $instance->addExtension(new \Symfony\Bridge\Twig\Extension\SecurityExtension(($this->services['.container.private.security.authorization_checker'] ?? $this->get_Container_Private_Security_AuthorizationCheckerService()), new \Symfony\Component\Security\Http\Impersonate\ImpersonateUrlGenerator($d, ($this->privates['security.firewall.map'] ?? $this->getSecurity_Firewall_MapService()), $h)));
  6.         $instance->addExtension(new \App\Twig\AppExtension(($this->services['.container.private.session'] ?? $this->get_Container_Private_SessionService()), ($this->services['doctrine.orm.default_entity_manager'] ?? $this->getDoctrine_Orm_DefaultEntityManagerService())));
  7.         $instance->addExtension(new \Symfony\Bundle\WebProfilerBundle\Twig\WebProfilerExtension($i));
  8.         $instance->addExtension(new \Doctrine\Bundle\DoctrineBundle\Twig\DoctrineExtension());
  9.         $instance->addGlobal('app'$j);
  10.         $instance->addRuntimeLoader(new \Twig\RuntimeLoader\ContainerRuntimeLoader(new \Symfony\Component\DependencyInjection\Argument\ServiceLocator($this->getService, [
  11.             'App\\Twig\\AppRuntime' => ['privates''App\\Twig\\AppRuntime''getAppRuntimeService'true],
  1.         $instance->add(new \Symfony\Component\HttpKernel\DataCollector\EventDataCollector(($this->services['event_dispatcher'] ?? $this->getEventDispatcherService()), $c));
  2.         $instance->add(($this->privates['data_collector.router'] ?? ($this->privates['data_collector.router'] = new \Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector())));
  3.         $instance->add($d);
  4.         $instance->add(new \Symfony\Component\Translation\DataCollector\TranslationDataCollector(($this->services['translator'] ?? $this->getTranslatorService())));
  5.         $instance->add(new \Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector(($this->privates['security.untracked_token_storage'] ?? ($this->privates['security.untracked_token_storage'] = new \Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage())), ($this->privates['security.role_hierarchy'] ?? ($this->privates['security.role_hierarchy'] = new \Symfony\Component\Security\Core\Role\RoleHierarchy([]))), ($this->privates['security.logout_url_generator'] ?? $this->getSecurity_LogoutUrlGeneratorService()), ($this->privates['debug.security.access.decision_manager'] ?? $this->getDebug_Security_Access_DecisionManagerService()), ($this->privates['security.firewall.map'] ?? $this->getSecurity_Firewall_MapService()), ($this->privates['debug.security.firewall'] ?? $this->getDebug_Security_FirewallService()), true));
  6.         $instance->add(new \Symfony\Bridge\Twig\DataCollector\TwigDataCollector(($this->privates['twig.profile'] ?? ($this->privates['twig.profile'] = new \Twig\Profiler\Profile())), ($this->services['.container.private.twig'] ?? $this->get_Container_Private_TwigService())));
  7.         $instance->add($e);
  8.         $instance->add(new \Doctrine\Bundle\DoctrineBundle\DataCollector\DoctrineDataCollector(($this->services['doctrine'] ?? $this->getDoctrineService()), true, ($this->privates['doctrine.debug_data_holder'] ?? ($this->privates['doctrine.debug_data_holder'] = new \Doctrine\Bundle\DoctrineBundle\Middleware\BacktraceDebugDataHolder([])))));
  9.         $instance->add(new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsCollector(($this->privates['doctrine.migrations.dependency_factory'] ?? $this->getDoctrine_Migrations_DependencyFactoryService()), new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsFlattener()));
  10.         $instance->add(($this->services['data_collector.dump'] ?? $this->getDataCollector_DumpService()));
  11.         $instance->add(new \Symfony\Component\Mailer\DataCollector\MessageDataCollector(($this->privates['mailer.message_logger_listener'] ?? ($this->privates['mailer.message_logger_listener'] = new \Symfony\Component\Mailer\EventListener\MessageLoggerListener()))));
  1.      *
  2.      * @return \Symfony\Component\HttpKernel\EventListener\ProfilerListener
  3.      */
  4.     protected function getProfilerListenerService()
  5.     {
  6.         $a = ($this->services['.container.private.profiler'] ?? $this->get_Container_Private_ProfilerService());
  7.         if (isset($this->privates['profiler_listener'])) {
  8.             return $this->privates['profiler_listener'];
  9.         }
  1.         }, => 'onNotification'], -255);
  2.         $instance->addListener('kernel.response', [=> function () {
  3.             return ($this->privates['profiler_listener'] ?? $this->getProfilerListenerService());
  4.         }, => 'onKernelResponse'], -100);
  5.         $instance->addListener('kernel.exception', [=> function () {
  6.             return ($this->privates['profiler_listener'] ?? $this->getProfilerListenerService());
  7.         }, => 'onKernelException'], 0);
  8.         $instance->addListener('kernel.terminate', [=> function () {
  9.             return ($this->privates['profiler_listener'] ?? $this->getProfilerListenerService());
  10.         }, => 'onKernelTerminate'], -1024);
  11.         $instance->addListener('kernel.controller', [=> function () {
  1.         $this->sorted[$eventName] = [];
  2.         foreach ($this->listeners[$eventName] as &$listeners) {
  3.             foreach ($listeners as $k => &$listener) {
  4.                 if (\is_array($listener) && isset($listener[0]) && $listener[0] instanceof \Closure && >= \count($listener)) {
  5.                     $listener[0] = $listener[0]();
  6.                     $listener[1] = $listener[1] ?? '__invoke';
  7.                 }
  8.                 $this->sorted[$eventName][] = $listener;
  9.             }
  10.         }
  1.             if (empty($this->listeners[$eventName])) {
  2.                 return [];
  3.             }
  4.             if (!isset($this->sorted[$eventName])) {
  5.                 $this->sortListeners($eventName);
  6.             }
  7.             return $this->sorted[$eventName];
  8.         }
  1.             $this->orphanedEvents[$this->currentRequestHash][] = $eventName;
  2.             return;
  3.         }
  4.         foreach ($this->dispatcher->getListeners($eventName) as $listener) {
  5.             $priority $this->getListenerPriority($eventName$listener);
  6.             $wrappedListener = new WrappedListener($listener instanceof WrappedListener $listener->getWrappedListener() : $listenernull$this->stopwatch$this);
  7.             $this->wrappedListeners[$eventName][] = $wrappedListener;
  8.             $this->dispatcher->removeListener($eventName$listener);
  9.             $this->dispatcher->addListener($eventName$wrappedListener$priority);
  1.         if (null !== $this->logger && $event instanceof StoppableEventInterface && $event->isPropagationStopped()) {
  2.             $this->logger->debug(sprintf('The "%s" event is already stopped. No listeners have been called.'$eventName));
  3.         }
  4.         $this->preProcess($eventName);
  5.         try {
  6.             $this->beforeDispatch($eventName$event);
  7.             try {
  8.                 $e $this->stopwatch->start($eventName'section');
  9.                 try {
  1.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleThrowable($e$request$type);
  5.         } finally {
  6.             $this->requestStack->pop();
  7.         }
  8.     }
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/ebaris/public_html/app/vendor/autoload_runtime.php') in /home/ebaris/public_html/app/public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Stack Traces 2

[2/2] ErrorException
ErrorException:
Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

  at /home/ebaris/public_html/app/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php:53
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler->__construct('/home/ebaris/public_html/app/var/cache/dev/sessions')
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:1937)
  at ContainerVgxDp83\App_KernelDevDebugContainer->getSession_FactoryService()
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:591)
  at ContainerVgxDp83\App_KernelDevDebugContainer->get_Container_Private_SessionService()
     (/home/ebaris/public_html/app/vendor/symfony/dependency-injection/Container.php:423)
  at Symfony\Component\DependencyInjection\Container->getService('services', '.container.private.session', 'get_Container_Private_SessionService', false)
     (/home/ebaris/public_html/app/vendor/symfony/dependency-injection/Argument/ServiceLocator.php:42)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get('session')
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/EventListener/SessionListener.php:51)
  at Symfony\Component\HttpKernel\EventListener\SessionListener->getSession()
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:74)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->Symfony\Component\HttpKernel\EventListener\{closure}()
     (/home/ebaris/public_html/app/vendor/symfony/http-foundation/Request.php:735)
  at Symfony\Component\HttpFoundation\Request->getSession()
     (/home/ebaris/public_html/app/vendor/symfony/http-foundation/Request.php:754)
  at Symfony\Component\HttpFoundation\Request->hasPreviousSession()
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:100)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.response', object(ResponseEvent))
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:196)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse(object(Response), object(Request), 2)
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:184)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/EventListener/ErrorListener.php:91)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(object(ExceptionEvent), 'kernel.exception', object(EventDispatcher))
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(Closure), object(WrappedListener), object(Closure), object(Closure)), 'kernel.exception', object(ExceptionEvent))
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:223)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(ErrorException), object(Request), 1)
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:114)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ErrorException), object(Request))
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:131)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}(object(ErrorException))
     (/home/ebaris/public_html/app/vendor/symfony/error-handler/ErrorHandler.php:607)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ErrorException))                
[1/2] ErrorException
ErrorException:
Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time

  at /home/ebaris/public_html/app/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php:53
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler->__construct('/home/ebaris/public_html/app/var/cache/dev/sessions')
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:1937)
  at ContainerVgxDp83\App_KernelDevDebugContainer->getSession_FactoryService()
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:591)
  at ContainerVgxDp83\App_KernelDevDebugContainer->get_Container_Private_SessionService()
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:666)
  at ContainerVgxDp83\App_KernelDevDebugContainer->get_Container_Private_TwigService()
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:542)
  at ContainerVgxDp83\App_KernelDevDebugContainer->get_Container_Private_ProfilerService()
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:1702)
  at ContainerVgxDp83\App_KernelDevDebugContainer->getProfilerListenerService()
     (/home/ebaris/public_html/app/var/cache/dev/ContainerVgxDp83/App_KernelDevDebugContainer.php:1019)
  at ContainerVgxDp83\App_KernelDevDebugContainer->ContainerVgxDp83\{closure}()
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/EventDispatcher.php:245)
  at Symfony\Component\EventDispatcher\EventDispatcher->sortListeners('kernel.exception')
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/EventDispatcher.php:76)
  at Symfony\Component\EventDispatcher\EventDispatcher->getListeners('kernel.exception')
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:293)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->preProcess('kernel.exception')
     (/home/ebaris/public_html/app/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:148)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:223)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(ErrorException), object(Request), 1)
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/HttpKernel.php:86)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (/home/ebaris/public_html/app/vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/home/ebaris/public_html/app/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/home/ebaris/public_html/app/vendor/autoload_runtime.php:35)
  at require_once('/home/ebaris/public_html/app/vendor/autoload_runtime.php')
     (/home/ebaris/public_html/app/public/index.php:5)