https://espacesingulier.paa-planning.net/login_check?url=login_check

Exceptions

You must configure the check path to be handled by the firewall using form_login in your security firewall configuration.

Exception

RuntimeException

  1.                     'csrf_token' => $csrfToken,
  2.         ));
  3.     }
  4.     public function checkAction() {
  5.         throw new \RuntimeException('You must configure the check path to be handled by the firewall using form_login in your security firewall configuration.');
  6.     }
  7.     public function logoutAction() {
  8.         throw new \RuntimeException('You must activate the logout in your security firewall configuration.');
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php->checkAction (line 145)
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.      */
  2.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true) {
  3.         $request->headers->set('X-Php-Ob-Level'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 28)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. // // LG 20220802 pour tests
  7. // if (file_exists("/home/luc/partage_win10/Poubelle/")) {
  8. //     $jsonfile = "/home/luc/partage_win10/Poubelle/comparePasswords.txt";
  9. // } else if (file_exists("/var/www/html/PAA/Recette/var/log/")) {

Stack Trace

RuntimeException

RuntimeException:
You must configure the check path to be handled by the firewall using form_login in your security firewall configuration.

  at vendor/friendsofsymfony/user-bundle/Controller/SecurityController.php:75
  at FOS\UserBundle\Controller\SecurityController->checkAction()
     (vendor/symfony/http-kernel/HttpKernel.php:145)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:65)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:190)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)