Error 500 Internal Server Error

GET http://siac.ufpso.edu.co/assets/css/403.php

ErrorController

Request

GET Parameters

None

POST Parameters

None

Uploaded Files

None

Request Attributes

Key Value
_controller
"error_controller"
_stopwatch_token
"b5dae0"
exception
Symfony\Component\Finder\Exception\DirectoryNotFoundException {#542
  #message: "The "/var/www/html/assets/controllers" directory does not exist."
  #code: 0
  #file: "/var/www/html/vendor/symfony/finder/Finder.php"
  #line: 646
  trace: {
    /var/www/html/vendor/symfony/finder/Finder.php:646 {
      Symfony\Component\Finder\Finder->in(array|string $dirs): static …
      › } else {    throw new DirectoryNotFoundException(sprintf('The "%s" directory does not exist.', $dir));}
    }
    /var/www/html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:67 {
      Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->loadCustomControllers(): array …
      › $finder = new Finder();$finder->in($this->controllerPaths)    ->files()
      arguments: {
        $dirs: [ …1]
      }
    }
    /var/www/html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:47 {
      Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->getControllersMap(): array …
      ›     $this->loadUxControllers(),    $this->loadCustomControllers(),);
    }
    /var/www/html/vendor/symfony/stimulus-bundle/src/AssetMapper/StimulusLoaderJavaScriptCompiler.php:52 {
      Symfony\UX\StimulusBundle\AssetMapper\StimulusLoaderJavaScriptCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
      › 
      › foreach ($this->controllersMapGenerator->getControllersMap() as $name => $mappedControllerAsset) {    // @legacy: backwards compatibility with Symfony 6.3
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
      Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
      › 
      ›     $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());}
      arguments: {
        $content: """
          import { Application } from '@hotwired/stimulus';\n
          import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
          \n
          const controllerAttribute = 'data-controller';\n
          const loadControllers = (application, eagerControllers, lazyControllers) => {\n
              for (const name in eagerControllers) {\n
                  registerController(name, eagerControllers[name], application);\n
              }\n
              const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
              lazyControllerHandler.start();\n
          };\n
          const startStimulusApp = () => {\n
              const application = Application.start();\n
              application.debug = isApplicationDebug;\n
              loadControllers(application, eagerControllers, lazyControllers);\n
              return application;\n
          };\n
          class StimulusLazyControllerHandler {\n
              constructor(application, lazyControllers) {\n
                  this.application = application;\n
                  this.lazyControllers = lazyControllers;\n
              }\n
              start() {\n
                  this.lazyLoadExistingControllers(document.documentElement);\n
                  this.lazyLoadNewControllers(document.documentElement);\n
              }\n
              lazyLoadExistingControllers(element) {\n
                  this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
              }\n
              async loadLazyController(name) {\n
                  if (canRegisterController(name, this.application)) {\n
                      if (this.lazyControllers[name] === undefined) {\n
                          return;\n
                      }\n
                      const controllerModule = await this.lazyControllers[name]();\n
                      registerController(name, controllerModule.default, this.application);\n
                  }\n
              }\n
              lazyLoadNewControllers(element) {\n
                  new MutationObserver((mutationsList) => {\n
                      for (const { attributeName, target, type } of mutationsList) {\n
                          switch (type) {\n
                              case 'attributes': {\n
                                  if (attributeName === controllerAttribute &&\n
                                      target.getAttribute(controllerAttribute)) {\n
                                      extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                  }\n
                                  break;\n
                              }\n
                              case 'childList': {\n
                                  this.lazyLoadExistingControllers(target);\n
                              }\n
                          }\n
                      }\n
                  }).observe(element, {\n
                      attributeFilter: [controllerAttribute],\n
                      subtree: true,\n
                      childList: true,\n
                  });\n
              }\n
              queryControllerNamesWithin(element) {\n
                  return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                      .map(extractControllerNamesFrom)\n
                      .flat();\n
              }\n
          }\n
          function registerController(name, controller, application) {\n
              if (canRegisterController(name, application)) {\n
                  application.register(name, controller);\n
              }\n
          }\n
          function extractControllerNamesFrom(element) {\n
              const controllerNameValue = element.getAttribute(controllerAttribute);\n
              if (!controllerNameValue) {\n
                  return [];\n
              }\n
              return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
          }\n
          function canRegisterController(name, application) {\n
              return !application.router.modulesByIdentifier.has(name);\n
          }\n
          \n
          export { loadControllers, startStimulusApp };\n
          """
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
        $assetMapper: Symfony\Component\AssetMapper\AssetMapper {#413 …}
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:109 {
      Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
      › $content = (new Filesystem())->readFile($asset->sourcePath);$compiled = $this->compiler->compile($content, $asset);arguments: {
        $content: """
          import { Application } from '@hotwired/stimulus';\n
          import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
          \n
          const controllerAttribute = 'data-controller';\n
          const loadControllers = (application, eagerControllers, lazyControllers) => {\n
              for (const name in eagerControllers) {\n
                  registerController(name, eagerControllers[name], application);\n
              }\n
              const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
              lazyControllerHandler.start();\n
          };\n
          const startStimulusApp = () => {\n
              const application = Application.start();\n
              application.debug = isApplicationDebug;\n
              loadControllers(application, eagerControllers, lazyControllers);\n
              return application;\n
          };\n
          class StimulusLazyControllerHandler {\n
              constructor(application, lazyControllers) {\n
                  this.application = application;\n
                  this.lazyControllers = lazyControllers;\n
              }\n
              start() {\n
                  this.lazyLoadExistingControllers(document.documentElement);\n
                  this.lazyLoadNewControllers(document.documentElement);\n
              }\n
              lazyLoadExistingControllers(element) {\n
                  this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
              }\n
              async loadLazyController(name) {\n
                  if (canRegisterController(name, this.application)) {\n
                      if (this.lazyControllers[name] === undefined) {\n
                          return;\n
                      }\n
                      const controllerModule = await this.lazyControllers[name]();\n
                      registerController(name, controllerModule.default, this.application);\n
                  }\n
              }\n
              lazyLoadNewControllers(element) {\n
                  new MutationObserver((mutationsList) => {\n
                      for (const { attributeName, target, type } of mutationsList) {\n
                          switch (type) {\n
                              case 'attributes': {\n
                                  if (attributeName === controllerAttribute &&\n
                                      target.getAttribute(controllerAttribute)) {\n
                                      extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                  }\n
                                  break;\n
                              }\n
                              case 'childList': {\n
                                  this.lazyLoadExistingControllers(target);\n
                              }\n
                          }\n
                      }\n
                  }).observe(element, {\n
                      attributeFilter: [controllerAttribute],\n
                      subtree: true,\n
                      childList: true,\n
                  });\n
              }\n
              queryControllerNamesWithin(element) {\n
                  return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                      .map(extractControllerNamesFrom)\n
                      .flat();\n
              }\n
          }\n
          function registerController(name, controller, application) {\n
              if (canRegisterController(name, application)) {\n
                  application.register(name, controller);\n
              }\n
          }\n
          function extractControllerNamesFrom(element) {\n
              const controllerNameValue = element.getAttribute(controllerAttribute);\n
              if (!controllerNameValue) {\n
                  return [];\n
              }\n
              return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
          }\n
          function canRegisterController(name, application) {\n
              return !application.router.modulesByIdentifier.has(name);\n
          }\n
          \n
          export { loadControllers, startStimulusApp };\n
          """
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:50 {
      Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
      › 
      › $content = $this->compileContent($asset);[$digest, $isPredigested] = $this->getDigest($asset, $content);
      arguments: {
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
      Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
      › 
      › $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);arguments: {
        $logicalPath: "@symfony/stimulus-bundle/loader.js"
        $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
      Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
      › 
      ›     return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);}
      arguments: {
        $logicalPath: "@symfony/stimulus-bundle/loader.js"
        $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:62 {
      Symfony\Component\AssetMapper\AssetMapper->getAssetFromSourcePath(string $sourcePath): MappedAsset …
      › 
      ›     return $this->getAsset($logicalPath);}
      arguments: {
        $logicalPath: "@symfony/stimulus-bundle/controllers.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:204 {
      Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->findAssetForRelativeImport(string $importedModule, MappedAsset $asset, AssetMapperInterface $assetMapper): MappedAsset …
      › try {    $dependentAsset = $assetMapper->getAssetFromSourcePath($resolvedSourcePath);} catch (CircularAssetsException $exception) {
      arguments: {
        $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/controllers.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:88 {
      Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure} …
      › } else {    $dependentAsset = $this->findAssetForRelativeImport($importedModule, $asset, $assetMapper);}
      arguments: {
        $importedModule: "./controllers.js"
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
        $assetMapper: Symfony\Component\AssetMapper\AssetMapper {#413 …}
      }
    }
    Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure}() {}
    /var/www/html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:64 {
      Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
      › {    return preg_replace_callback(self::IMPORT_PATTERN, function ($matches) use ($asset, $assetMapper, $content) {        $fullImportString = $matches[0][0];
      arguments: {
        $pattern: """
          /\n
                      ^(?:\/\/.*)                     # Lines that start with comments\n
                  |\n
                      (?:\n
                          '(?:[^'\\\n]|\\.)*+'   # Strings enclosed in single quotes\n
                      |\n
                          "(?:[^"\\\n]|\\.)*+"      # Strings enclosed in double quotes\n
                      )\n
                  |\n
                      (?:                            # Import statements (script captured)\n
                          import\s*\n
                              (?:\n
                                  (?:\*\s*as\s+\w+|\s+[\w\s{},*]+)\n
                                  \s*from\s*\n
                              )?\n
                      |\n
                          \bimport\(\n
                      )\n
                      \s*['"`](\.\/[^'"`\n]++|(\.\.\/)*+[^'"`\n]++)['"`]\s*[;\)]\n
                  ?\n
              /mx
          """
        $callback: Closure($matches) {#528 …}
        $subject: """
          import { Application } from '@hotwired/stimulus';\n
          import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
          \n
          const controllerAttribute = 'data-controller';\n
          const loadControllers = (application, eagerControllers, lazyControllers) => {\n
              for (const name in eagerControllers) {\n
                  registerController(name, eagerControllers[name], application);\n
              }\n
              const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
              lazyControllerHandler.start();\n
          };\n
          const startStimulusApp = () => {\n
              const application = Application.start();\n
              application.debug = isApplicationDebug;\n
              loadControllers(application, eagerControllers, lazyControllers);\n
              return application;\n
          };\n
          class StimulusLazyControllerHandler {\n
              constructor(application, lazyControllers) {\n
                  this.application = application;\n
                  this.lazyControllers = lazyControllers;\n
              }\n
              start() {\n
                  this.lazyLoadExistingControllers(document.documentElement);\n
                  this.lazyLoadNewControllers(document.documentElement);\n
              }\n
              lazyLoadExistingControllers(element) {\n
                  this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
              }\n
              async loadLazyController(name) {\n
                  if (canRegisterController(name, this.application)) {\n
                      if (this.lazyControllers[name] === undefined) {\n
                          return;\n
                      }\n
                      const controllerModule = await this.lazyControllers[name]();\n
                      registerController(name, controllerModule.default, this.application);\n
                  }\n
              }\n
              lazyLoadNewControllers(element) {\n
                  new MutationObserver((mutationsList) => {\n
                      for (const { attributeName, target, type } of mutationsList) {\n
                          switch (type) {\n
                              case 'attributes': {\n
                                  if (attributeName === controllerAttribute &&\n
                                      target.getAttribute(controllerAttribute)) {\n
                                      extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                  }\n
                                  break;\n
                              }\n
                              case 'childList': {\n
                                  this.lazyLoadExistingControllers(target);\n
                              }\n
                          }\n
                      }\n
                  }).observe(element, {\n
                      attributeFilter: [controllerAttribute],\n
                      subtree: true,\n
                      childList: true,\n
                  });\n
              }\n
              queryControllerNamesWithin(element) {\n
                  return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                      .map(extractControllerNamesFrom)\n
                      .flat();\n
              }\n
          }\n
          function registerController(name, controller, application) {\n
              if (canRegisterController(name, application)) {\n
                  application.register(name, controller);\n
              }\n
          }\n
          function extractControllerNamesFrom(element) {\n
              const controllerNameValue = element.getAttribute(controllerAttribute);\n
              if (!controllerNameValue) {\n
                  return [];\n
              }\n
              return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
          }\n
          function canRegisterController(name, application) {\n
              return !application.router.modulesByIdentifier.has(name);\n
          }\n
          \n
          export { loadControllers, startStimulusApp };\n
          """
        $limit: -1
        &$count: null
        $flags: 256
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
      Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
      › 
      ›     $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());}
      arguments: {
        $content: """
          import { Application } from '@hotwired/stimulus';\n
          import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
          \n
          const controllerAttribute = 'data-controller';\n
          const loadControllers = (application, eagerControllers, lazyControllers) => {\n
              for (const name in eagerControllers) {\n
                  registerController(name, eagerControllers[name], application);\n
              }\n
              const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
              lazyControllerHandler.start();\n
          };\n
          const startStimulusApp = () => {\n
              const application = Application.start();\n
              application.debug = isApplicationDebug;\n
              loadControllers(application, eagerControllers, lazyControllers);\n
              return application;\n
          };\n
          class StimulusLazyControllerHandler {\n
              constructor(application, lazyControllers) {\n
                  this.application = application;\n
                  this.lazyControllers = lazyControllers;\n
              }\n
              start() {\n
                  this.lazyLoadExistingControllers(document.documentElement);\n
                  this.lazyLoadNewControllers(document.documentElement);\n
              }\n
              lazyLoadExistingControllers(element) {\n
                  this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
              }\n
              async loadLazyController(name) {\n
                  if (canRegisterController(name, this.application)) {\n
                      if (this.lazyControllers[name] === undefined) {\n
                          return;\n
                      }\n
                      const controllerModule = await this.lazyControllers[name]();\n
                      registerController(name, controllerModule.default, this.application);\n
                  }\n
              }\n
              lazyLoadNewControllers(element) {\n
                  new MutationObserver((mutationsList) => {\n
                      for (const { attributeName, target, type } of mutationsList) {\n
                          switch (type) {\n
                              case 'attributes': {\n
                                  if (attributeName === controllerAttribute &&\n
                                      target.getAttribute(controllerAttribute)) {\n
                                      extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                  }\n
                                  break;\n
                              }\n
                              case 'childList': {\n
                                  this.lazyLoadExistingControllers(target);\n
                              }\n
                          }\n
                      }\n
                  }).observe(element, {\n
                      attributeFilter: [controllerAttribute],\n
                      subtree: true,\n
                      childList: true,\n
                  });\n
              }\n
              queryControllerNamesWithin(element) {\n
                  return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                      .map(extractControllerNamesFrom)\n
                      .flat();\n
              }\n
          }\n
          function registerController(name, controller, application) {\n
              if (canRegisterController(name, application)) {\n
                  application.register(name, controller);\n
              }\n
          }\n
          function extractControllerNamesFrom(element) {\n
              const controllerNameValue = element.getAttribute(controllerAttribute);\n
              if (!controllerNameValue) {\n
                  return [];\n
              }\n
              return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
          }\n
          function canRegisterController(name, application) {\n
              return !application.router.modulesByIdentifier.has(name);\n
          }\n
          \n
          export { loadControllers, startStimulusApp };\n
          """
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
        $assetMapper: Symfony\Component\AssetMapper\AssetMapper {#413 …}
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:109 {
      Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
      › $content = (new Filesystem())->readFile($asset->sourcePath);$compiled = $this->compiler->compile($content, $asset);arguments: {
        $content: """
          import { Application } from '@hotwired/stimulus';\n
          import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
          \n
          const controllerAttribute = 'data-controller';\n
          const loadControllers = (application, eagerControllers, lazyControllers) => {\n
              for (const name in eagerControllers) {\n
                  registerController(name, eagerControllers[name], application);\n
              }\n
              const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
              lazyControllerHandler.start();\n
          };\n
          const startStimulusApp = () => {\n
              const application = Application.start();\n
              application.debug = isApplicationDebug;\n
              loadControllers(application, eagerControllers, lazyControllers);\n
              return application;\n
          };\n
          class StimulusLazyControllerHandler {\n
              constructor(application, lazyControllers) {\n
                  this.application = application;\n
                  this.lazyControllers = lazyControllers;\n
              }\n
              start() {\n
                  this.lazyLoadExistingControllers(document.documentElement);\n
                  this.lazyLoadNewControllers(document.documentElement);\n
              }\n
              lazyLoadExistingControllers(element) {\n
                  this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
              }\n
              async loadLazyController(name) {\n
                  if (canRegisterController(name, this.application)) {\n
                      if (this.lazyControllers[name] === undefined) {\n
                          return;\n
                      }\n
                      const controllerModule = await this.lazyControllers[name]();\n
                      registerController(name, controllerModule.default, this.application);\n
                  }\n
              }\n
              lazyLoadNewControllers(element) {\n
                  new MutationObserver((mutationsList) => {\n
                      for (const { attributeName, target, type } of mutationsList) {\n
                          switch (type) {\n
                              case 'attributes': {\n
                                  if (attributeName === controllerAttribute &&\n
                                      target.getAttribute(controllerAttribute)) {\n
                                      extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                  }\n
                                  break;\n
                              }\n
                              case 'childList': {\n
                                  this.lazyLoadExistingControllers(target);\n
                              }\n
                          }\n
                      }\n
                  }).observe(element, {\n
                      attributeFilter: [controllerAttribute],\n
                      subtree: true,\n
                      childList: true,\n
                  });\n
              }\n
              queryControllerNamesWithin(element) {\n
                  return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                      .map(extractControllerNamesFrom)\n
                      .flat();\n
              }\n
          }\n
          function registerController(name, controller, application) {\n
              if (canRegisterController(name, application)) {\n
                  application.register(name, controller);\n
              }\n
          }\n
          function extractControllerNamesFrom(element) {\n
              const controllerNameValue = element.getAttribute(controllerAttribute);\n
              if (!controllerNameValue) {\n
                  return [];\n
              }\n
              return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
          }\n
          function canRegisterController(name, application) {\n
              return !application.router.modulesByIdentifier.has(name);\n
          }\n
          \n
          export { loadControllers, startStimulusApp };\n
          """
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:50 {
      Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
      › 
      › $content = $this->compileContent($asset);[$digest, $isPredigested] = $this->getDigest($asset, $content);
      arguments: {
        $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
      Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
      › 
      › $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);arguments: {
        $logicalPath: "@symfony/stimulus-bundle/loader.js"
        $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
      Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
      › 
      ›     return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);}
      arguments: {
        $logicalPath: "@symfony/stimulus-bundle/loader.js"
        $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:47 {
      Symfony\Component\AssetMapper\AssetMapper->allAssets(): iterable …
      › foreach ($this->mapperRepository->all() as $logicalPath => $filePath) {    $asset = $this->getAsset($logicalPath);    if (null === $asset) {
      arguments: {
        $logicalPath: "@symfony/stimulus-bundle/loader.js"
      }
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:193 {
      Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->findAssetFromCache(string $pathInfo): MappedAsset …
      › $asset = null;foreach ($this->assetMapper->allAssets() as $assetCandidate) {    if ($pathInfo === $assetCandidate->publicPath) {
    }
    /var/www/html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:127 {
      Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->onKernelRequest(RequestEvent $event): void …
      › 
      › $asset = $this->findAssetFromCache($pathInfo);arguments: {
        $pathInfo: "/assets/css/403.php"
      }
    }
    /var/www/html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115 {
      Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
      › try {    ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
        ...: {
          "kernel.request"
          Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#144 …}
        }
      }
    }
    /var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php:206 {
      Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event): void …
      ›     }    $listener($event, $eventName, $this);}
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
        $eventName: "kernel.request"
        $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#144 …}
      }
    }
    /var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
      Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
      › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
      arguments: {
        $listeners: [ …11]
        $eventName: "kernel.request"
        $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
      }
    }
    /var/www/html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122 {
      Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
      › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
        $eventName: "kernel.request"
      }
    }
    /var/www/html/vendor/symfony/http-kernel/HttpKernel.php:159 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › $event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);arguments: {
        $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
        $eventName: "kernel.request"
      }
    }
    /var/www/html/vendor/symfony/http-kernel/HttpKernel.php:76 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
        $type: 1
      }
    }
    /var/www/html/vendor/symfony/http-kernel/Kernel.php:182 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
        $type: 1
        $catch: true
      }
    }
    /var/www/html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
      Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
      › {    $response = $this->kernel->handle($this->request);arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#2 …}
      }
    }
    /var/www/html/vendor/autoload_runtime.php:29 {
      require_once …
      ›         ->getRunner($app)        ->run());
    }
    /var/www/html/public/index.php:5 {\rrequire_once dirname(__DIR__).'/vendor/autoload_runtime.php';\r\r
      arguments: {
        "/var/www/html/vendor/autoload_runtime.php"
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Processor\DebugProcessor {#165
  -records: [
    2 => [
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.599+00:00"
        "message" => "Uncaught PHP Exception Symfony\Component\Finder\Exception\DirectoryNotFoundException: "The "/var/www/html/assets/controllers" directory does not exist." at Finder.php line 646"
        "priority" => 500
        "priorityName" => "CRITICAL"
        "context" => [
          "exception" => Symfony\Component\Finder\Exception\DirectoryNotFoundException {#542
            #message: "The "/var/www/html/assets/controllers" directory does not exist."
            #code: 0
            #file: "/var/www/html/vendor/symfony/finder/Finder.php"
            #line: 646
            trace: {
              /var/www/html/vendor/symfony/finder/Finder.php:646 {
                Symfony\Component\Finder\Finder->in(array|string $dirs): static …
                › } else {    throw new DirectoryNotFoundException(sprintf('The "%s" directory does not exist.', $dir));}
              }
              /var/www/html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:67 {
                Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->loadCustomControllers(): array …
                › $finder = new Finder();$finder->in($this->controllerPaths)    ->files()
                arguments: {
                  $dirs: [ …1]
                }
              }
              /var/www/html/vendor/symfony/stimulus-bundle/src/AssetMapper/ControllersMapGenerator.php:47 {
                Symfony\UX\StimulusBundle\AssetMapper\ControllersMapGenerator->getControllersMap(): array …
                ›     $this->loadUxControllers(),    $this->loadCustomControllers(),);
              }
              /var/www/html/vendor/symfony/stimulus-bundle/src/AssetMapper/StimulusLoaderJavaScriptCompiler.php:52 {
                Symfony\UX\StimulusBundle\AssetMapper\StimulusLoaderJavaScriptCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
                › 
                › foreach ($this->controllersMapGenerator->getControllersMap() as $name => $mappedControllerAsset) {    // @legacy: backwards compatibility with Symfony 6.3
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
                Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
                › 
                ›     $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());}
                arguments: {
                  $content: """
                    import { Application } from '@hotwired/stimulus';\n
                    import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
                    \n
                    const controllerAttribute = 'data-controller';\n
                    const loadControllers = (application, eagerControllers, lazyControllers) => {\n
                        for (const name in eagerControllers) {\n
                            registerController(name, eagerControllers[name], application);\n
                        }\n
                        const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
                        lazyControllerHandler.start();\n
                    };\n
                    const startStimulusApp = () => {\n
                        const application = Application.start();\n
                        application.debug = isApplicationDebug;\n
                        loadControllers(application, eagerControllers, lazyControllers);\n
                        return application;\n
                    };\n
                    class StimulusLazyControllerHandler {\n
                        constructor(application, lazyControllers) {\n
                            this.application = application;\n
                            this.lazyControllers = lazyControllers;\n
                        }\n
                        start() {\n
                            this.lazyLoadExistingControllers(document.documentElement);\n
                            this.lazyLoadNewControllers(document.documentElement);\n
                        }\n
                        lazyLoadExistingControllers(element) {\n
                            this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
                        }\n
                        async loadLazyController(name) {\n
                            if (canRegisterController(name, this.application)) {\n
                                if (this.lazyControllers[name] === undefined) {\n
                                    return;\n
                                }\n
                                const controllerModule = await this.lazyControllers[name]();\n
                                registerController(name, controllerModule.default, this.application);\n
                            }\n
                        }\n
                        lazyLoadNewControllers(element) {\n
                            new MutationObserver((mutationsList) => {\n
                                for (const { attributeName, target, type } of mutationsList) {\n
                                    switch (type) {\n
                                        case 'attributes': {\n
                                            if (attributeName === controllerAttribute &&\n
                                                target.getAttribute(controllerAttribute)) {\n
                                                extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                            }\n
                                            break;\n
                                        }\n
                                        case 'childList': {\n
                                            this.lazyLoadExistingControllers(target);\n
                                        }\n
                                    }\n
                                }\n
                            }).observe(element, {\n
                                attributeFilter: [controllerAttribute],\n
                                subtree: true,\n
                                childList: true,\n
                            });\n
                        }\n
                        queryControllerNamesWithin(element) {\n
                            return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                                .map(extractControllerNamesFrom)\n
                                .flat();\n
                        }\n
                    }\n
                    function registerController(name, controller, application) {\n
                        if (canRegisterController(name, application)) {\n
                            application.register(name, controller);\n
                        }\n
                    }\n
                    function extractControllerNamesFrom(element) {\n
                        const controllerNameValue = element.getAttribute(controllerAttribute);\n
                        if (!controllerNameValue) {\n
                            return [];\n
                        }\n
                        return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
                    }\n
                    function canRegisterController(name, application) {\n
                        return !application.router.modulesByIdentifier.has(name);\n
                    }\n
                    \n
                    export { loadControllers, startStimulusApp };\n
                    """
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                  $assetMapper: Symfony\Component\AssetMapper\AssetMapper {#413 …}
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:109 {
                Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
                › $content = (new Filesystem())->readFile($asset->sourcePath);$compiled = $this->compiler->compile($content, $asset);arguments: {
                  $content: """
                    import { Application } from '@hotwired/stimulus';\n
                    import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
                    \n
                    const controllerAttribute = 'data-controller';\n
                    const loadControllers = (application, eagerControllers, lazyControllers) => {\n
                        for (const name in eagerControllers) {\n
                            registerController(name, eagerControllers[name], application);\n
                        }\n
                        const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
                        lazyControllerHandler.start();\n
                    };\n
                    const startStimulusApp = () => {\n
                        const application = Application.start();\n
                        application.debug = isApplicationDebug;\n
                        loadControllers(application, eagerControllers, lazyControllers);\n
                        return application;\n
                    };\n
                    class StimulusLazyControllerHandler {\n
                        constructor(application, lazyControllers) {\n
                            this.application = application;\n
                            this.lazyControllers = lazyControllers;\n
                        }\n
                        start() {\n
                            this.lazyLoadExistingControllers(document.documentElement);\n
                            this.lazyLoadNewControllers(document.documentElement);\n
                        }\n
                        lazyLoadExistingControllers(element) {\n
                            this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
                        }\n
                        async loadLazyController(name) {\n
                            if (canRegisterController(name, this.application)) {\n
                                if (this.lazyControllers[name] === undefined) {\n
                                    return;\n
                                }\n
                                const controllerModule = await this.lazyControllers[name]();\n
                                registerController(name, controllerModule.default, this.application);\n
                            }\n
                        }\n
                        lazyLoadNewControllers(element) {\n
                            new MutationObserver((mutationsList) => {\n
                                for (const { attributeName, target, type } of mutationsList) {\n
                                    switch (type) {\n
                                        case 'attributes': {\n
                                            if (attributeName === controllerAttribute &&\n
                                                target.getAttribute(controllerAttribute)) {\n
                                                extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                            }\n
                                            break;\n
                                        }\n
                                        case 'childList': {\n
                                            this.lazyLoadExistingControllers(target);\n
                                        }\n
                                    }\n
                                }\n
                            }).observe(element, {\n
                                attributeFilter: [controllerAttribute],\n
                                subtree: true,\n
                                childList: true,\n
                            });\n
                        }\n
                        queryControllerNamesWithin(element) {\n
                            return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                                .map(extractControllerNamesFrom)\n
                                .flat();\n
                        }\n
                    }\n
                    function registerController(name, controller, application) {\n
                        if (canRegisterController(name, application)) {\n
                            application.register(name, controller);\n
                        }\n
                    }\n
                    function extractControllerNamesFrom(element) {\n
                        const controllerNameValue = element.getAttribute(controllerAttribute);\n
                        if (!controllerNameValue) {\n
                            return [];\n
                        }\n
                        return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
                    }\n
                    function canRegisterController(name, application) {\n
                        return !application.router.modulesByIdentifier.has(name);\n
                    }\n
                    \n
                    export { loadControllers, startStimulusApp };\n
                    """
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:50 {
                Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
                › 
                › $content = $this->compileContent($asset);[$digest, $isPredigested] = $this->getDigest($asset, $content);
                arguments: {
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
                Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
                › 
                › $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);arguments: {
                  $logicalPath: "@symfony/stimulus-bundle/loader.js"
                  $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
                Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
                › 
                ›     return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);}
                arguments: {
                  $logicalPath: "@symfony/stimulus-bundle/loader.js"
                  $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:62 {
                Symfony\Component\AssetMapper\AssetMapper->getAssetFromSourcePath(string $sourcePath): MappedAsset …
                › 
                ›     return $this->getAsset($logicalPath);}
                arguments: {
                  $logicalPath: "@symfony/stimulus-bundle/controllers.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:204 {
                Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->findAssetForRelativeImport(string $importedModule, MappedAsset $asset, AssetMapperInterface $assetMapper): MappedAsset …
                › try {    $dependentAsset = $assetMapper->getAssetFromSourcePath($resolvedSourcePath);} catch (CircularAssetsException $exception) {
                arguments: {
                  $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/controllers.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:88 {
                Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure} …
                › } else {    $dependentAsset = $this->findAssetForRelativeImport($importedModule, $asset, $assetMapper);}
                arguments: {
                  $importedModule: "./controllers.js"
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                  $assetMapper: Symfony\Component\AssetMapper\AssetMapper {#413 …}
                }
              }
              Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->Symfony\Component\AssetMapper\Compiler\{closure}() {}
              /var/www/html/vendor/symfony/asset-mapper/Compiler/JavaScriptImportPathCompiler.php:64 {
                Symfony\Component\AssetMapper\Compiler\JavaScriptImportPathCompiler->compile(string $content, MappedAsset $asset, AssetMapperInterface $assetMapper): string …
                › {    return preg_replace_callback(self::IMPORT_PATTERN, function ($matches) use ($asset, $assetMapper, $content) {        $fullImportString = $matches[0][0];
                arguments: {
                  $pattern: """
                    /\n
                                ^(?:\/\/.*)                     # Lines that start with comments\n
                            |\n
                                (?:\n
                                    '(?:[^'\\\n]|\\.)*+'   # Strings enclosed in single quotes\n
                                |\n
                                    "(?:[^"\\\n]|\\.)*+"      # Strings enclosed in double quotes\n
                                )\n
                            |\n
                                (?:                            # Import statements (script captured)\n
                                    import\s*\n
                                        (?:\n
                                            (?:\*\s*as\s+\w+|\s+[\w\s{},*]+)\n
                                            \s*from\s*\n
                                        )?\n
                                |\n
                                    \bimport\(\n
                                )\n
                                \s*['"`](\.\/[^'"`\n]++|(\.\.\/)*+[^'"`\n]++)['"`]\s*[;\)]\n
                            ?\n
                        /mx
                    """
                  $callback: Closure($matches) {#528 …}
                  $subject: """
                    import { Application } from '@hotwired/stimulus';\n
                    import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
                    \n
                    const controllerAttribute = 'data-controller';\n
                    const loadControllers = (application, eagerControllers, lazyControllers) => {\n
                        for (const name in eagerControllers) {\n
                            registerController(name, eagerControllers[name], application);\n
                        }\n
                        const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
                        lazyControllerHandler.start();\n
                    };\n
                    const startStimulusApp = () => {\n
                        const application = Application.start();\n
                        application.debug = isApplicationDebug;\n
                        loadControllers(application, eagerControllers, lazyControllers);\n
                        return application;\n
                    };\n
                    class StimulusLazyControllerHandler {\n
                        constructor(application, lazyControllers) {\n
                            this.application = application;\n
                            this.lazyControllers = lazyControllers;\n
                        }\n
                        start() {\n
                            this.lazyLoadExistingControllers(document.documentElement);\n
                            this.lazyLoadNewControllers(document.documentElement);\n
                        }\n
                        lazyLoadExistingControllers(element) {\n
                            this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
                        }\n
                        async loadLazyController(name) {\n
                            if (canRegisterController(name, this.application)) {\n
                                if (this.lazyControllers[name] === undefined) {\n
                                    return;\n
                                }\n
                                const controllerModule = await this.lazyControllers[name]();\n
                                registerController(name, controllerModule.default, this.application);\n
                            }\n
                        }\n
                        lazyLoadNewControllers(element) {\n
                            new MutationObserver((mutationsList) => {\n
                                for (const { attributeName, target, type } of mutationsList) {\n
                                    switch (type) {\n
                                        case 'attributes': {\n
                                            if (attributeName === controllerAttribute &&\n
                                                target.getAttribute(controllerAttribute)) {\n
                                                extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                            }\n
                                            break;\n
                                        }\n
                                        case 'childList': {\n
                                            this.lazyLoadExistingControllers(target);\n
                                        }\n
                                    }\n
                                }\n
                            }).observe(element, {\n
                                attributeFilter: [controllerAttribute],\n
                                subtree: true,\n
                                childList: true,\n
                            });\n
                        }\n
                        queryControllerNamesWithin(element) {\n
                            return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                                .map(extractControllerNamesFrom)\n
                                .flat();\n
                        }\n
                    }\n
                    function registerController(name, controller, application) {\n
                        if (canRegisterController(name, application)) {\n
                            application.register(name, controller);\n
                        }\n
                    }\n
                    function extractControllerNamesFrom(element) {\n
                        const controllerNameValue = element.getAttribute(controllerAttribute);\n
                        if (!controllerNameValue) {\n
                            return [];\n
                        }\n
                        return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
                    }\n
                    function canRegisterController(name, application) {\n
                        return !application.router.modulesByIdentifier.has(name);\n
                    }\n
                    \n
                    export { loadControllers, startStimulusApp };\n
                    """
                  $limit: -1
                  &$count: null
                  $flags: 256
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapperCompiler.php:40 {
                Symfony\Component\AssetMapper\AssetMapperCompiler->compile(string $content, MappedAsset $asset): string …
                › 
                ›     $content = $compiler->compile($content, $asset, $this->assetMapper ??= ($this->assetMapperFactory)());}
                arguments: {
                  $content: """
                    import { Application } from '@hotwired/stimulus';\n
                    import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
                    \n
                    const controllerAttribute = 'data-controller';\n
                    const loadControllers = (application, eagerControllers, lazyControllers) => {\n
                        for (const name in eagerControllers) {\n
                            registerController(name, eagerControllers[name], application);\n
                        }\n
                        const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
                        lazyControllerHandler.start();\n
                    };\n
                    const startStimulusApp = () => {\n
                        const application = Application.start();\n
                        application.debug = isApplicationDebug;\n
                        loadControllers(application, eagerControllers, lazyControllers);\n
                        return application;\n
                    };\n
                    class StimulusLazyControllerHandler {\n
                        constructor(application, lazyControllers) {\n
                            this.application = application;\n
                            this.lazyControllers = lazyControllers;\n
                        }\n
                        start() {\n
                            this.lazyLoadExistingControllers(document.documentElement);\n
                            this.lazyLoadNewControllers(document.documentElement);\n
                        }\n
                        lazyLoadExistingControllers(element) {\n
                            this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
                        }\n
                        async loadLazyController(name) {\n
                            if (canRegisterController(name, this.application)) {\n
                                if (this.lazyControllers[name] === undefined) {\n
                                    return;\n
                                }\n
                                const controllerModule = await this.lazyControllers[name]();\n
                                registerController(name, controllerModule.default, this.application);\n
                            }\n
                        }\n
                        lazyLoadNewControllers(element) {\n
                            new MutationObserver((mutationsList) => {\n
                                for (const { attributeName, target, type } of mutationsList) {\n
                                    switch (type) {\n
                                        case 'attributes': {\n
                                            if (attributeName === controllerAttribute &&\n
                                                target.getAttribute(controllerAttribute)) {\n
                                                extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                            }\n
                                            break;\n
                                        }\n
                                        case 'childList': {\n
                                            this.lazyLoadExistingControllers(target);\n
                                        }\n
                                    }\n
                                }\n
                            }).observe(element, {\n
                                attributeFilter: [controllerAttribute],\n
                                subtree: true,\n
                                childList: true,\n
                            });\n
                        }\n
                        queryControllerNamesWithin(element) {\n
                            return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                                .map(extractControllerNamesFrom)\n
                                .flat();\n
                        }\n
                    }\n
                    function registerController(name, controller, application) {\n
                        if (canRegisterController(name, application)) {\n
                            application.register(name, controller);\n
                        }\n
                    }\n
                    function extractControllerNamesFrom(element) {\n
                        const controllerNameValue = element.getAttribute(controllerAttribute);\n
                        if (!controllerNameValue) {\n
                            return [];\n
                        }\n
                        return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
                    }\n
                    function canRegisterController(name, application) {\n
                        return !application.router.modulesByIdentifier.has(name);\n
                    }\n
                    \n
                    export { loadControllers, startStimulusApp };\n
                    """
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                  $assetMapper: Symfony\Component\AssetMapper\AssetMapper {#413 …}
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:109 {
                Symfony\Component\AssetMapper\Factory\MappedAssetFactory->compileContent(MappedAsset $asset): ?string …
                › $content = (new Filesystem())->readFile($asset->sourcePath);$compiled = $this->compiler->compile($content, $asset);arguments: {
                  $content: """
                    import { Application } from '@hotwired/stimulus';\n
                    import { isApplicationDebug, eagerControllers, lazyControllers } from './controllers.js';\n
                    \n
                    const controllerAttribute = 'data-controller';\n
                    const loadControllers = (application, eagerControllers, lazyControllers) => {\n
                        for (const name in eagerControllers) {\n
                            registerController(name, eagerControllers[name], application);\n
                        }\n
                        const lazyControllerHandler = new StimulusLazyControllerHandler(application, lazyControllers);\n
                        lazyControllerHandler.start();\n
                    };\n
                    const startStimulusApp = () => {\n
                        const application = Application.start();\n
                        application.debug = isApplicationDebug;\n
                        loadControllers(application, eagerControllers, lazyControllers);\n
                        return application;\n
                    };\n
                    class StimulusLazyControllerHandler {\n
                        constructor(application, lazyControllers) {\n
                            this.application = application;\n
                            this.lazyControllers = lazyControllers;\n
                        }\n
                        start() {\n
                            this.lazyLoadExistingControllers(document.documentElement);\n
                            this.lazyLoadNewControllers(document.documentElement);\n
                        }\n
                        lazyLoadExistingControllers(element) {\n
                            this.queryControllerNamesWithin(element).forEach((controllerName) => this.loadLazyController(controllerName));\n
                        }\n
                        async loadLazyController(name) {\n
                            if (canRegisterController(name, this.application)) {\n
                                if (this.lazyControllers[name] === undefined) {\n
                                    return;\n
                                }\n
                                const controllerModule = await this.lazyControllers[name]();\n
                                registerController(name, controllerModule.default, this.application);\n
                            }\n
                        }\n
                        lazyLoadNewControllers(element) {\n
                            new MutationObserver((mutationsList) => {\n
                                for (const { attributeName, target, type } of mutationsList) {\n
                                    switch (type) {\n
                                        case 'attributes': {\n
                                            if (attributeName === controllerAttribute &&\n
                                                target.getAttribute(controllerAttribute)) {\n
                                                extractControllerNamesFrom(target).forEach((controllerName) => this.loadLazyController(controllerName));\n
                                            }\n
                                            break;\n
                                        }\n
                                        case 'childList': {\n
                                            this.lazyLoadExistingControllers(target);\n
                                        }\n
                                    }\n
                                }\n
                            }).observe(element, {\n
                                attributeFilter: [controllerAttribute],\n
                                subtree: true,\n
                                childList: true,\n
                            });\n
                        }\n
                        queryControllerNamesWithin(element) {\n
                            return Array.from(element.querySelectorAll(`[${controllerAttribute}]`))\n
                                .map(extractControllerNamesFrom)\n
                                .flat();\n
                        }\n
                    }\n
                    function registerController(name, controller, application) {\n
                        if (canRegisterController(name, application)) {\n
                            application.register(name, controller);\n
                        }\n
                    }\n
                    function extractControllerNamesFrom(element) {\n
                        const controllerNameValue = element.getAttribute(controllerAttribute);\n
                        if (!controllerNameValue) {\n
                            return [];\n
                        }\n
                        return controllerNameValue.split(/\s+/).filter((content) => content.length);\n
                    }\n
                    function canRegisterController(name, application) {\n
                        return !application.router.modulesByIdentifier.has(name);\n
                    }\n
                    \n
                    export { loadControllers, startStimulusApp };\n
                    """
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Factory/MappedAssetFactory.php:50 {
                Symfony\Component\AssetMapper\Factory\MappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
                › 
                › $content = $this->compileContent($asset);[$digest, $isPredigested] = $this->getDigest($asset, $content);
                arguments: {
                  $asset: Symfony\Component\AssetMapper\MappedAsset {#517 …}
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/Factory/CachedMappedAssetFactory.php:43 {
                Symfony\Component\AssetMapper\Factory\CachedMappedAssetFactory->createMappedAsset(string $logicalPath, string $sourcePath): MappedAsset …
                › 
                › $mappedAsset = $this->innerFactory->createMappedAsset($logicalPath, $sourcePath);arguments: {
                  $logicalPath: "@symfony/stimulus-bundle/loader.js"
                  $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:41 {
                Symfony\Component\AssetMapper\AssetMapper->getAsset(string $logicalPath): MappedAsset …
                › 
                ›     return $this->mappedAssetFactory->createMappedAsset($logicalPath, $filePath);}
                arguments: {
                  $logicalPath: "@symfony/stimulus-bundle/loader.js"
                  $sourcePath: "/var/www/html/vendor/symfony/stimulus-bundle/assets/dist/loader.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapper.php:47 {
                Symfony\Component\AssetMapper\AssetMapper->allAssets(): iterable …
                › foreach ($this->mapperRepository->all() as $logicalPath => $filePath) {    $asset = $this->getAsset($logicalPath);    if (null === $asset) {
                arguments: {
                  $logicalPath: "@symfony/stimulus-bundle/loader.js"
                }
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:193 {
                Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->findAssetFromCache(string $pathInfo): MappedAsset …
                › $asset = null;foreach ($this->assetMapper->allAssets() as $assetCandidate) {    if ($pathInfo === $assetCandidate->publicPath) {
              }
              /var/www/html/vendor/symfony/asset-mapper/AssetMapperDevServerSubscriber.php:127 {
                Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber->onKernelRequest(RequestEvent $event): void …
                › 
                › $asset = $this->findAssetFromCache($pathInfo);arguments: {
                  $pathInfo: "/assets/css/403.php"
                }
              }
              /var/www/html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115 {
                Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
                › try {    ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {
                arguments: {
                  $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
                  ...: {
                    "kernel.request"
                    Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#144 …}
                  }
                }
              }
              /var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php:206 {
                Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event): void …
                ›     }    $listener($event, $eventName, $this);}
                arguments: {
                  $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
                  $eventName: "kernel.request"
                  $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#144 …}
                }
              }
              /var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php:56 {
                Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, ?string $eventName = null): object …
                › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
                arguments: {
                  $listeners: [ …11]
                  $eventName: "kernel.request"
                  $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
                }
              }
              /var/www/html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122 {
                Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, ?string $eventName = null): object …
                › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
                arguments: {
                  $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
                  $eventName: "kernel.request"
                }
              }
              /var/www/html/vendor/symfony/http-kernel/HttpKernel.php:159 {
                Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
                › $event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);arguments: {
                  $event: Symfony\Component\HttpKernel\Event\RequestEvent {#46 …}
                  $eventName: "kernel.request"
                }
              }
              /var/www/html/vendor/symfony/http-kernel/HttpKernel.php:76 {
                Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › try {    return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {
                arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                  $type: 1
                }
              }
              /var/www/html/vendor/symfony/http-kernel/Kernel.php:182 {
                Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
                arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                  $type: 1
                  $catch: true
                }
              }
              /var/www/html/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
                Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
                › {    $response = $this->kernel->handle($this->request);arguments: {
                  $request: Symfony\Component\HttpFoundation\Request {#2 …}
                }
              }
              /var/www/html/vendor/autoload_runtime.php:29 {
                require_once …
                ›         ->getRunner($app)        ->run());
              }
              /var/www/html/public/index.php:5 {\rrequire_once dirname(__DIR__).'/vendor/autoload_runtime.php';\r\r
                arguments: {
                  "/var/www/html/vendor/autoload_runtime.php"
                }
              }
            }
          }
        ]
        "channel" => "request"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\WebpackEncoreBundle\EventListener\ExceptionListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Listener "{listener}" stopped propagation of the event "{event}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.640+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.641+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
    ]
    558 => [
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.600+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Container9r0Mh0h\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.601+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.637+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1768016583
        "timestamp_rfc3339" => "2026-01-10T03:43:03.638+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
    ]
  ]
  -errorCount: [
    2 => 1
    558 => 0
  ]
  -requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#164 …}
}

Request Headers

Header Value
accept
"text/html,application/xhtml+xml,application/xml;q=0.9,image/heif,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
accept-encoding
"gzip, deflate, br, zstd"
accept-language
"en-US,en;q=0.5"
authorization
""
connection
"close"
host
"siac.ufpso.edu.co"
priority
"u=0, i"
sec-fetch-dest
"document"
sec-fetch-mode
"navigate"
sec-fetch-site
"none"
sec-fetch-user
"?1"
upgrade-insecure-requests
"1"
user-agent
"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)"
x-forwarded-for
"47.128.23.163"
x-forwarded-host
"siac.ufpso.edu.co"
x-forwarded-port
"443"
x-forwarded-proto
"https, https"
x-forwarded-ssl
"on"
x-original-uri
"/assets/css/403.php"
x-php-ob-level
"0"
x-real-ip
"47.128.23.163"

Request Content

Request content not available (it was retrieved as a resource).

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Sat, 10 Jan 2026 03:43:03 GMT"
vary
"Accept"
x-debug-exception
"The%20%22%2Fvar%2Fwww%2Fhtml%2Fassets%2Fcontrollers%22%20directory%20does%20not%20exist."
x-debug-exception-file
"%2Fvar%2Fwww%2Fhtml%2Fvendor%2Fsymfony%2Ffinder%2FFinder.php:646"
x-debug-token
"b42f17"

Cookies

Request Cookies

No request cookies

Response Cookies

No response cookies

Session

Session Metadata

No session metadata

Session Attributes

No session attributes

Session Usage

0 Usages
Stateless check enabled

Session not used.

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
APP_ENV
"dev"
APP_SECRET
"324d84a5ff3b02c0dcdef7f67d0f4ec9"
APP_URL_SITE_
"siac.ufpso.edu.co"
APP_URL_SITE_DEV
"127.0.0.1"
AUTOEVALUACION_SFTP_HOST
"172.25.150.5"
AUTOEVALUACION_SFTP_PASSWORD
"Ku89/*5&k-6"
AUTOEVALUACION_SFTP_PORT
"47963"
AUTOEVALUACION_SFTP_USER
"siaafiles"
CORS_ALLOW_ORIGIN
"^https?://(siac.ufpso.edu.co)(:[0-9]+)?$"
DATABASE_IP
"172.25.150.10"
DATABASE_PASSWORD
"GESTION2019*-"
DATABASE_PORT
"1521"
DATABASE_SERVICENAME
"ufpso"
DATABASE_URL
"oci8://AGP:GESTION2019*-@172.25.150.10:1521/ufpso?charset=AL32UTF8"
DATABASE_URL_LIME
"postgresql://consultasia:SDoZ*nVxE@172.25.150.15:5432/encuestas?charset=utf8"
DATABASE_USER
"AGP"
JWT_PASSPHRASE
"6f58cebb509acf9cb406c8b0442417a85e13130fbf9143c9a99603086103583c"
JWT_PUBLIC_KEY
"%kernel.project_dir%/config/jwt/public.pem"
JWT_SECRET_KEY
"%kernel.project_dir%/config/jwt/private.pem"
MESSENGER_TRANSPORT_DSN
"doctrine://default?auto_setup=0"

Defined as regular env variables

Key Value
APACHE_CONFDIR
"/etc/apache2"
APACHE_ENVVARS
"/etc/apache2/envvars"
APACHE_LOCK_DIR
"/var/lock/apache2"
APACHE_LOG_DIR
"/var/log/apache2"
APACHE_PID_FILE
"/var/run/apache2/apache2.pid"
APACHE_RUN_DIR
"/var/run/apache2"
APACHE_RUN_GROUP
"www-data"
APACHE_RUN_USER
"www-data"
APP_DEBUG
"1"
COMPOSER_ALLOW_SUPERUSER
"1"
COMPOSER_HOME
"/composer"
CONTEXT_DOCUMENT_ROOT
"/var/www/html/public"
CONTEXT_PREFIX
""
DOCUMENT_ROOT
"/var/www/html/public"
GATEWAY_INTERFACE
"CGI/1.1"
GPG_KEYS
"1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA"
HOSTNAME
"7398fe32257d"
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,image/heif,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
HTTP_ACCEPT_ENCODING
"gzip, deflate, br, zstd"
HTTP_ACCEPT_LANGUAGE
"en-US,en;q=0.5"
HTTP_AUTHORIZATION
""
HTTP_CONNECTION
"close"
HTTP_HOST
"siac.ufpso.edu.co"
HTTP_PRIORITY
"u=0, i"
HTTP_SEC_FETCH_DEST
"document"
HTTP_SEC_FETCH_MODE
"navigate"
HTTP_SEC_FETCH_SITE
"none"
HTTP_SEC_FETCH_USER
"?1"
HTTP_UPGRADE_INSECURE_REQUESTS
"1"
HTTP_USER_AGENT
"Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)"
HTTP_X_FORWARDED_FOR
"47.128.23.163"
HTTP_X_FORWARDED_HOST
"siac.ufpso.edu.co"
HTTP_X_FORWARDED_PORT
"443"
HTTP_X_FORWARDED_PROTO
"https, https"
HTTP_X_FORWARDED_SSL
"on"
HTTP_X_ORIGINAL_URI
"/assets/css/403.php"
HTTP_X_REAL_IP
"47.128.23.163"
LANG
"C"
PATH
"./vendor/bin:/composer/vendor/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PHPIZE_DEPS
"autoconf \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkg-config \t\tre2c"
PHP_ASC_URL
"https://www.php.net/distributions/php-8.3.8.tar.xz.asc"
PHP_CFLAGS
"-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
PHP_CPPFLAGS
"-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
PHP_INI_DIR
"/usr/local/etc/php"
PHP_LDFLAGS
"-Wl,-O1 -pie"
PHP_SELF
"/index.php"
PHP_SHA256
"aea358b56186f943c2bbd350c9005b9359133d47e954cfc561385319ae5bb8d7"
PHP_URL
"https://www.php.net/distributions/php-8.3.8.tar.xz"
PHP_VERSION
"8.3.8"
PWD
"/var/www/html"
QUERY_STRING
""
REMOTE_ADDR
"172.18.0.2"
REMOTE_PORT
"37204"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"http"
REQUEST_TIME
1768016583
REQUEST_TIME_FLOAT
1768016583.5819
REQUEST_URI
"/assets/css/403.php"
SCRIPT_FILENAME
"/var/www/html/public/index.php"
SCRIPT_NAME
"/index.php"
SCRIPT_URI
"http://siac.ufpso.edu.co/assets/css/403.php"
SCRIPT_URL
"/assets/css/403.php"
SERVER_ADDR
"172.18.0.5"
SERVER_ADMIN
"[no address given]"
SERVER_NAME
"siac.ufpso.edu.co"
SERVER_PORT
"80"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
"<address>Apache/2.4.59 (Debian) Server at siac.ufpso.edu.co Port 80</address>\n"
SERVER_SOFTWARE
"Apache/2.4.59 (Debian)"
SHLVL
"0"
SYMFONY_DOTENV_PATH
"/var/www/html/.env"
SYMFONY_DOTENV_VARS
"APP_ENV,APP_SECRET,APP_URL_SITE_,APP_URL_SITE_DEV,DATABASE_IP,DATABASE_PORT,DATABASE_SERVICENAME,DATABASE_USER,DATABASE_PASSWORD,DATABASE_URL,DATABASE_URL_LIME,MESSENGER_TRANSPORT_DSN,JWT_SECRET_KEY,JWT_PUBLIC_KEY,JWT_PASSPHRASE,CORS_ALLOW_ORIGIN,AUTOEVALUACION_SFTP_HOST,AUTOEVALUACION_SFTP_PORT,AUTOEVALUACION_SFTP_PASSWORD,AUTOEVALUACION_SFTP_USER"
VIRTUAL_HOST
"siac.ufpso.edu.co"
argc
0
argv
[]

Parent Request

Return to parent request (token = 7d0322)

Key Value
_remove_csp_headers
true
_stopwatch_token
"eb5a8f"