Exceptions
Exception
Error
in
src/Form/User/UserPasswordResetRequestForm.php
(line 40)
'autocomplete' => 'off'],'row_attr' => ['class' => 'form-floating mb-2'],])->add('captcha', Recaptcha3Type::class, ['constraints' => new Recaptcha3(),// 'action_name' => 'homepage',// 'locale' => 'en',]);}
in
vendor/symfony/form/ResolvedFormType.php
->
buildForm
(line 100)
public function buildForm(FormBuilderInterface $builder, array $options): void{$this->parent?->buildForm($builder, $options);$this->innerType->buildForm($builder, $options);foreach ($this->typeExtensions as $extension) {$extension->buildForm($builder, $options);}}
in
vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php
->
buildForm
(line 73)
return $this->proxiedType->createView($form, $parent);}public function buildForm(FormBuilderInterface $builder, array $options): void{$this->proxiedType->buildForm($builder, $options);}public function buildView(FormView $view, FormInterface $form, array $options): void{$this->proxiedType->buildView($view, $form, $options);
in
vendor/symfony/form/FormFactory.php
->
buildForm
(line 75)
$builder->setInitialOptions($options);}// Explicitly call buildForm() in order to be able to override either// createBuilder() or buildForm() in the resolved form type$type->buildForm($builder, $builder->getOptions());return $builder;}public function createBuilderForProperty(string $class, string $property, mixed $data = null, array $options = []): FormBuilderInterface
in
vendor/symfony/form/FormFactory.php
->
createNamedBuilder
(line 53)
/*** @return ($type is class-string<FormFlowTypeInterface> ? FormFlowBuilderInterface : FormBuilderInterface)*/public function createBuilder(string $type = FormType::class, mixed $data = null, array $options = []): FormBuilderInterface{return $this->createNamedBuilder($this->registry->getType($type)->getBlockPrefix(), $type, $data, $options);}/*** @return ($type is class-string<FormFlowTypeInterface> ? FormFlowBuilderInterface : FormBuilderInterface)*/
in
vendor/symfony/form/FormFactory.php
->
createBuilder
(line 32)
/*** @return ($type is class-string<FormFlowTypeInterface> ? FormFlowInterface : FormInterface)*/public function create(string $type = FormType::class, mixed $data = null, array $options = []): FormInterface{return $this->createBuilder($type, $data, $options)->getForm();}/*** @return ($type is class-string<FormFlowTypeInterface> ? FormFlowInterface : FormInterface)*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
create
(line 356)
** @return ($type is class-string<FormFlowTypeInterface> ? FormFlowInterface : FormInterface)*/protected function createForm(string $type, mixed $data = null, array $options = []): FormInterface{return $this->container->get('form.factory')->create($type, $data, $options);}/*** Creates and returns a form builder instance.*/
* @throws TransportExceptionInterface*/#[Route('/password_reset_request', name: 'request_reset_pw')]public function requestResetPwLink(Request $request): Response{$form = $this->createForm(UserPasswordResetRequestForm::class);$form->handleRequest($request);if ($form->isSubmitted() && $form->isValid()) {$data = $form->getData();
in
vendor/symfony/http-kernel/HttpKernel.php
->
requestResetPwLink
(line 188)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $controllerMetadata);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 79)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type, $controllerMetadata);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 143)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 34)
) {}public function run(): int{$response = $this->kernel->handle($this->request);$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {fastcgi_finish_request();
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/sites.clients/d.rescuetally.org/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 03:26:08 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://d.rescuetally.org/_profiler/latest?type=request",
"method": "GET"
}
|
Stack Trace
|
Error
|
|---|
Error:
Class "Karser\Recaptcha3Bundle\Validator\Constraints\Recaptcha3" not found
at src/Form/User/UserPasswordResetRequestForm.php:40
at App\Form\User\UserPasswordResetRequestForm->buildForm()
(vendor/symfony/form/ResolvedFormType.php:100)
at Symfony\Component\Form\ResolvedFormType->buildForm()
(vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:73)
at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildForm()
(vendor/symfony/form/FormFactory.php:75)
at Symfony\Component\Form\FormFactory->createNamedBuilder()
(vendor/symfony/form/FormFactory.php:53)
at Symfony\Component\Form\FormFactory->createBuilder()
(vendor/symfony/form/FormFactory.php:32)
at Symfony\Component\Form\FormFactory->create()
(vendor/symfony/framework-bundle/Controller/AbstractController.php:356)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createForm()
(src/Controller/UserController.php:221)
at App\Controller\UserController->requestResetPwLink()
(vendor/symfony/http-kernel/HttpKernel.php:188)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:79)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:143)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/sites.clients/d.rescuetally.org/vendor/autoload_runtime.php')
(public/index.php:5)
|