Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#1831 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/dossierc2e-preprod-electra/vendor/autoload_runtime.php')
in
public/index.php
(line 8)
use Kernel\Kernel;use Symfony\Component\Dotenv\Dotenv;use Symfony\Component\ErrorHandler\Debug;use Symfony\Component\HttpFoundation\Request;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context): Kernel {$dotenv = new Dotenv();$dotenv->load(__DIR__.'/../.env');
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 90)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 188)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/dossierc2e-preprod-electra/vendor/autoload_runtime.php')
in
public/index.php
(line 8)
use Kernel\Kernel;use Symfony\Component\Dotenv\Dotenv;use Symfony\Component\ErrorHandler\Debug;use Symfony\Component\HttpFoundation\Request;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return static function (array $context): Kernel {$dotenv = new Dotenv();$dotenv->load(__DIR__.'/../.env');
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Bonification::getGPBonusValidityDate(): Optional parameter $project declared before required parameter $record is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Cumac::getCumacData(): Optional parameter $cumacs declared before required parameter $dureeMax is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\OffreProjet::getCumacClassicByMoteur(): Optional parameter $moteur declared before required parameter $step is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\OffreProjet::getCumacPrecaByMoteur(): Optional parameter $moteur declared before required parameter $step is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isJustified(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isDeclared(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isInformed(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isPJustified(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isPrecaireOrModesteJustified(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isPrecaireOrModesteJustified(): Implicitly marking parameter $project as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isGPJustified(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isGP(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isPrecaire(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isNotPrecaire(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::eligibleGenerateCache(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::eligible(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::getCas1PrecariteType(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isMenageModesteJustified(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isMenageModesteDeclared(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isMenageModesteEligible(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isPDeclared(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Precarite\Cas1::isPEligible(): Implicitly marking parameter $cas1 as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\ObligeBundle\Services\Pricing::getAffectationWithNoUserLog(): Optional parameter $simulateur declared before required parameter $moteur is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:58 | php |
Deprecated: Consoneo\Bundle\WorkflowBundle\Affectation\BaseService::addAffectation(): Optional parameter $user declared before required parameter $scope is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:59 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "0bf1c7"
},
"request_uri": "https://preprod-electra.dossier-c2e.fr/_profiler/0bf1c7?panel=exception&type=request",
"method": "GET"
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "C2eCoreBundle\EventSubscriber\Engine\EngineRuntimeHttpSubscriber::onRequest". {
"event": "kernel.request",
"listener": "C2eCoreBundle\\EventSubscriber\\Engine\\EngineRuntimeHttpSubscriber::onRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "C2eCoreBundle\EventSubscriber\Mongo\MongoRuntimeHttpSubscriber::onRequest". {
"event": "kernel.request",
"listener": "C2eCoreBundle\\EventSubscriber\\Mongo\\MongoRuntimeHttpSubscriber::onRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". {
"event": "kernel.request",
"listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.request" to listener "Consoneo\Bundle\PublicBundle\EventSubscriber\IframeRedirector::onKernelRequest". {
"event": "kernel.request",
"listener": "Consoneo\\Bundle\\PublicBundle\\EventSubscriber\\IframeRedirector::onKernelRequest"
}
|
| INFO 14:59:59 | php |
User Deprecated: The "JMS\JobQueueBundle\Entity\Type\SafeObjectType" class extends "Doctrine\DBAL\Types\ObjectType" that is deprecated Use {@link JsonType} instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by Kernel_KernelDevDebugContainer.php:11558, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm) {
"exception": {}
}
|
| INFO 14:59:59 | php |
Deprecated: Consoneo\Bundle\EcoffreFortBundle\Event\PutEvent::__construct(): Optional parameter $safeRoom declared before required parameter $retour is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:59 | php |
Deprecated: Consoneo\Bundle\EcoffreFortBundle\Event\PutEvent::__construct(): Optional parameter $targetDir declared before required parameter $retour is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:59 | php |
Deprecated: Consoneo\Bundle\EcoffreFortBundle\Event\QueryEvent::__construct(): Optional parameter $safeRoom declared before required parameter $codeRetour is implicitly treated as a required parameter {
"exception": {}
}
|
| INFO 14:59:59 | php |
Deprecated: Consoneo\Bundle\EcoffreFortBundle\Event\QueryEvent::__construct(): Optional parameter $iua declared before required parameter $codeRetour is implicitly treated as a required parameter {
"exception": {}
}
|
| DEBUG 14:59:59 | app | Detecting PHP binary |
| DEBUG 14:59:59 | app |
Detecting binary via absolute paths {
"binary": "/usr/local/bin/php",
"paths_to_check": [
"/usr/local/bin/php",
"/opt/homebrew/bin//usr/local/bin/php",
"/usr/local/bin//usr/local/bin/php",
"/usr/bin//usr/local/bin/php",
"/home/consoneo/.composer/vendor/bin//usr/local/bin/php",
"/home/consoneo/.config/composer/vendor/bin//usr/local/bin/php"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/local/bin/php",
"path": "/usr/local/bin/php",
"exists": false,
"is_executable": false,
"is_readable": false,
"permissions": null
}
|
| DEBUG 14:59:59 | app |
Testing execution of absolute path {
"binary": "/usr/local/bin/php",
"path": "/usr/local/bin/php",
"return_code": 127,
"output": [
"sh: 1: /usr/local/bin/php: not found"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/local/bin/php",
"path": "/opt/homebrew/bin//usr/local/bin/php",
"exists": false,
"is_executable": false,
"is_readable": false,
"permissions": null
}
|
| DEBUG 14:59:59 | app |
Testing execution of absolute path {
"binary": "/usr/local/bin/php",
"path": "/opt/homebrew/bin//usr/local/bin/php",
"return_code": 127,
"output": [
"sh: 1: /opt/homebrew/bin//usr/local/bin/php: not found"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/local/bin/php",
"path": "/usr/local/bin//usr/local/bin/php",
"exists": false,
"is_executable": false,
"is_readable": false,
"permissions": null
}
|
| DEBUG 14:59:59 | app |
Testing execution of absolute path {
"binary": "/usr/local/bin/php",
"path": "/usr/local/bin//usr/local/bin/php",
"return_code": 127,
"output": [
"sh: 1: /usr/local/bin//usr/local/bin/php: not found"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/local/bin/php",
"path": "/usr/bin//usr/local/bin/php",
"exists": false,
"is_executable": false,
"is_readable": false,
"permissions": null
}
|
| DEBUG 14:59:59 | app |
Testing execution of absolute path {
"binary": "/usr/local/bin/php",
"path": "/usr/bin//usr/local/bin/php",
"return_code": 127,
"output": [
"sh: 1: /usr/bin//usr/local/bin/php: not found"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/local/bin/php",
"path": "/home/consoneo/.composer/vendor/bin//usr/local/bin/php",
"exists": false,
"is_executable": false,
"is_readable": false,
"permissions": null
}
|
| DEBUG 14:59:59 | app |
Testing execution of absolute path {
"binary": "/usr/local/bin/php",
"path": "/home/consoneo/.composer/vendor/bin//usr/local/bin/php",
"return_code": 127,
"output": [
"sh: 1: /home/consoneo/.composer/vendor/bin//usr/local/bin/php: not found"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/local/bin/php",
"path": "/home/consoneo/.config/composer/vendor/bin//usr/local/bin/php",
"exists": false,
"is_executable": false,
"is_readable": false,
"permissions": null
}
|
| DEBUG 14:59:59 | app |
Testing execution of absolute path {
"binary": "/usr/local/bin/php",
"path": "/home/consoneo/.config/composer/vendor/bin//usr/local/bin/php",
"return_code": 127,
"output": [
"sh: 1: /home/consoneo/.config/composer/vendor/bin//usr/local/bin/php: not found"
]
}
|
| DEBUG 14:59:59 | app |
Detecting binary via absolute paths {
"binary": "/usr/bin/php",
"paths_to_check": [
"/usr/bin/php",
"/opt/homebrew/bin//usr/bin/php",
"/usr/local/bin//usr/bin/php",
"/usr/bin//usr/bin/php",
"/home/consoneo/.composer/vendor/bin//usr/bin/php",
"/home/consoneo/.config/composer/vendor/bin//usr/bin/php"
]
}
|
| DEBUG 14:59:59 | app |
Checking absolute path {
"binary": "/usr/bin/php",
"path": "/usr/bin/php",
"exists": true,
"is_executable": true,
"is_readable": true,
"permissions": "0755"
}
|
| DEBUG 14:59:59 | app |
Binary found at absolute path (PHP check) {
"binary": "/usr/bin/php",
"path": "/usr/bin/php"
}
|
| INFO 14:59:59 | app |
Detecting Composer binary {
"home_dir": "/home/consoneo",
"path": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin"
}
|
| INFO 14:59:59 | app |
Checking Composer paths {
"possible_paths": [
"/opt/homebrew/bin/composer",
"/usr/local/bin/composer",
"/usr/bin/composer",
"/home/consoneo/.composer/vendor/bin/composer",
"/home/consoneo/.config/composer/vendor/bin/composer",
"/usr/local/sbin/composer",
"/usr/sbin/composer",
"/snap/bin/composer"
],
"total_paths": 8
}
|
| INFO 14:59:59 | app |
Composer found via which command {
"path": "/usr/local/bin/composer"
}
|
| DEBUG 14:59:59 | app |
Testing command executability {
"command": "/usr/local/bin/composer",
"escaped_command": "'/usr/local/bin/composer'",
"path": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin",
"home": "/home/consoneo",
"file_exists": true,
"is_file": true,
"is_executable": true,
"is_readable": true,
"file_permissions": "0755"
}
|
| DEBUG 14:59:59 | app |
Command is executable {
"command": "/usr/local/bin/composer",
"version_output": "Running 2.8.12 (2025-09-19 13:41:59) with PHP 8.4.14 on Linux / 6.14.0-1016-aws\nComposer version 2.8.12 2025-09-19 13:41:59\nPHP version 8.4.14 ()\nRun the \"diagnose\" command to get more detailed diagnostics output."
}
|
| INFO 14:59:59 | app |
Composer binary detected via which and verified {
"path": "/usr/local/bin/composer"
}
|
| INFO 14:59:59 | app |
Initializing ComposerAutoloadService {
"php_binary": "/usr/bin/php",
"composer_binary": "/usr/local/bin/composer",
"is_relative": false
}
|
| DEBUG 14:59:59 | app |
DynamicEngineClassFactory initialized {
"php_binary": "/usr/bin/php",
"composer_binary": "/usr/local/bin/composer",
"base_path": "/var/www/dossierc2e-preprod-electra/src/C2eCoreBundle/Document/RuntimeEngine"
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller" to listener "Consoneo\Bundle\PublicBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Consoneo\\Bundle\\PublicBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller" to listener "Consoneo\Bundle\ObligeBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Consoneo\\Bundle\\ObligeBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller" to listener "Consoneo\Bundle\ObligeBundle\EventSubscriber\FeatureEnabledSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "Consoneo\\Bundle\\ObligeBundle\\EventSubscriber\\FeatureEnabledSubscriber::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller" to listener "Consoneo\Bundle\FrameworkBundle\EventSubscriber\Kernel::onKernelController". {
"event": "kernel.controller",
"listener": "Consoneo\\Bundle\\FrameworkBundle\\EventSubscriber\\Kernel::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller_arguments" to listener "Consoneo\Bundle\FrameworkBundle\EventListener\IsGrantedListener::onKernelController". {
"event": "kernel.controller_arguments",
"listener": "Consoneo\\Bundle\\FrameworkBundle\\EventListener\\IsGrantedListener::onKernelController"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
|
| DEBUG 14:59:59 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 14:59:59 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://preprod-electra.dossier-c2e.fr/js/fos_js_routes.js"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/dossierc2e-preprod-electra/vendor/autoload_runtime.php')
(public/index.php:8)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/js/fos_js_routes.js/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
(vendor/symfony/routing/Matcher/UrlMatcher.php:90)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest()
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:193)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/var/www/dossierc2e-preprod-electra/vendor/autoload_runtime.php')
(public/index.php:8)
|