Error 500 Internal Server Error

GET http://larsj.software/subscriptions

Forwarded to ErrorController (98e9a8)

Exceptions

Unable to find template "subscriptions.html.twig" (looked into: /var/www/larsj/templates, /var/www/larsj/vendor/symfony/twig-bridge/Resources/views/Form).

Twig\Error\ LoaderError

Show exception properties
0 of 0
Twig\Error\LoaderError {#565 â–¼ -lineno: -1 -name: null -rawMessage: "Unable to find template "subscriptions.html.twig" (looked into: /var/www/larsj/templates, /var/www/larsj/vendor/symfony/twig-bridge/Resources/views/Form)." -sourcePath: null -sourceCode: null }
  1. if (!$throw) {
  2. return null;
  3. }
  4. throw new LoaderError($this->errorCache[$name]);
  5. }
  6. private function normalizeName(string $name): string
  7. {
  8. return preg_replace('#/{2,}#', '/', str_replace('\\', '/', $name));
  1. return new Source(file_get_contents($path), $name, $path);
  2. }
  3. public function getCacheKey(string $name): string
  4. {
  5. if (null === $path = $this->findTemplate($name)) {
  6. return '';
  7. }
  8. $len = \strlen($this->rootPath);
  9. if (0 === strncmp($this->rootPath, $path, $len)) {
  10. return substr($path, $len);
in vendor/twig/twig/src/Environment.php -> getCacheKey (line 318)
  1. *
  2. * @internal
  3. */
  4. public function getTemplateClass(string $name, ?int $index = null): string
  5. {
  6. $key = ($this->hotCache[$name] ?? $this->getLoader()->getCacheKey($name)).$this->optionsHash;
  7. return '__TwigTemplate_'.hash(\PHP_VERSION_ID < 80100 ? 'sha256' : 'xxh128', $key).(null === $index ? '' : '___'.$index);
  8. }
  9. /**
in vendor/twig/twig/src/Environment.php -> getTemplateClass (line 371)
  1. trigger_deprecation('twig/twig', '3.9', 'Passing a "%s" instance to "%s" is deprecated.', self::class, __METHOD__);
  2. return $name;
  3. }
  4. return new TemplateWrapper($this, $this->loadTemplate($this->getTemplateClass($name), $name));
  5. }
  6. /**
  7. * Loads a template internal representation.
  8. *
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
  1. if (null !== $block) {
  2. return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
  3. }
  4. return $this->container->get('twig')->render($view, $parameters);
  5. }
  6. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  7. {
  8. $content = $this->doRenderView($view, $block, $parameters, $method);
  1. return $this->container->get('twig')->render($view, $parameters);
  2. }
  3. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  4. {
  5. $content = $this->doRenderView($view, $block, $parameters, $method);
  6. $response ??= new Response();
  7. if (200 === $response->getStatusCode()) {
  8. foreach ($parameters as $v) {
  9. if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1. * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2. * Forms found in parameters are auto-cast to form views.
  3. */
  4. protected function render(string $view, array $parameters = [], ?Response $response = null): Response
  5. {
  6. return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
  7. }
  8. /**
  9. * Renders a block in a view.
  10. *
AbstractController->render() in src/Controller/TestController.php (line 44)
  1. return $this->render('blog.html.twig');
  2. }
  3. #[Route('/subscriptions', name: 'subscriptions')]
  4. public function subscriptions(): Response
  5. {
  6. return $this->render('subscriptions.html.twig');
  7. }
  8. #[Route('/about', name: 'about')]
  9. public function about(): Response
  10. {
  11. return $this->render('about.html.twig');
in vendor/symfony/http-kernel/HttpKernel.php -> subscriptions (line 183)
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  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 ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  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. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/larsj/vendor/autoload_runtime.php') in 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. };