Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#195 -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 182)
$this->boot();++$this->requestStackSize;$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 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/html/office/JuiceOffice/JuiceOffice/vendor/autoload_runtime.php')
in
public/index.php
(line 7)
use App\Kernel;date_default_timezone_set('Europe/London');require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
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 89)
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 182)
$this->boot();++$this->requestStackSize;$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 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/html/office/JuiceOffice/JuiceOffice/vendor/autoload_runtime.php')
in
public/index.php
(line 7)
use App\Kernel;date_default_timezone_set('Europe/London');require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 23:33:23 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://joedemo.juiceoffice.co.uk/_profiler/latest?type=request&url=https%3A%2F%2Fjoedemo.juiceoffice.co.uk%2Freset-password",
"method": "GET"
}
|
| INFO 23:33:23 | deprecation |
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 App_KernelDevDebugContainer.php:34738, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) {
"exception": {}
}
|
| INFO 23:33:23 | deprecation |
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": {}
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\KernelRequestSubscriber::onMaintenance". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\KernelRequestSubscriber::onMaintenance"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | 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 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "App\Service\BeforeRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Service\\BeforeRequestListener::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\AttributesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "FOS\\HttpCacheBundle\\EventListener\\AttributesListener::onKernelRequest"
}
|
| INFO 23:33:23 | deprecation |
User Deprecated: Relying on non-optimal defaults for ID generation is deprecated, and IDENTITY
results in SERIAL, which is not recommended.
Instead, configure identifier generation strategies explicitly through
configuration.
We currently recommend "SEQUENCE" for "Doctrine\DBAL\Platforms\PostgreSqlPlatform", so you should use
$configuration->setIdentityGenerationPreferences([
"Doctrine\DBAL\Platforms\PostgreSqlPlatform" => ClassMetadata::GENERATOR_TYPE_SEQUENCE,
]); (ClassMetadataFactory.php:760 called by ClassMetadataFactory.php:631, https://github.com/doctrine/orm/issues/8893, package doctrine/orm) {
"exception": {}
}
|
| INFO 23:33:23 | doctrine |
Connecting with parameters {params} {
"params": {
"host": "a289732-akamai-prod-5253990-default.g2a.akamaidb.net",
"port": 22832,
"user": "akmadmin",
"password": "<redacted>",
"driver": "pdo_pgsql",
"dbname": "juice_office_joe_demo",
"serverVersion": "17"
}
}
|
| DEBUG 23:33:23 | doctrine |
Executing query: SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.is_verified AS is_verified_7, t0.username AS username_8, t0.remote_id AS remote_id_9, t0.phone AS phone_10, t0.address AS address_11, t0.postcode AS postcode_12, t0.mobile AS mobile_13, t0.last_login AS last_login_14, t0.visits AS visits_15, t0.active AS active_16, t0.signature AS signature_17, t0.avatar AS avatar_18, t0.job_title AS job_title_19, t0.last_activity_at AS last_activity_at_20, t0.notes AS notes_21, t0.previous_id AS previous_id_22, t0.old_group AS old_group_23, t0.saved_view AS saved_view_24, t0.enc_key AS enc_key_25, t0.microsoft_access_token AS microsoft_access_token_26, t0.oauth_state AS oauth_state_27, t0.access_token_cache AS access_token_cache_28, t0.notifications AS notifications_29, t0.push_ids AS push_ids_30, t0.emergency_contact_name AS emergency_contact_name_31, t0.emergency_contact_phone AS emergency_contact_phone_32, t0.personal_email_address AS personal_email_address_33, t0.allow_access AS allow_access_34, t0.old_username AS old_username_35, t0.old_id AS old_id_36, t0.show_completed_tasks AS show_completed_tasks_37, t0.uuid AS uuid_38, t0.disabled AS disabled_39, t0.staff_department_id AS staff_department_id_40 FROM "user" t0 {
"sql": "SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.is_verified AS is_verified_7, t0.username AS username_8, t0.remote_id AS remote_id_9, t0.phone AS phone_10, t0.address AS address_11, t0.postcode AS postcode_12, t0.mobile AS mobile_13, t0.last_login AS last_login_14, t0.visits AS visits_15, t0.active AS active_16, t0.signature AS signature_17, t0.avatar AS avatar_18, t0.job_title AS job_title_19, t0.last_activity_at AS last_activity_at_20, t0.notes AS notes_21, t0.previous_id AS previous_id_22, t0.old_group AS old_group_23, t0.saved_view AS saved_view_24, t0.enc_key AS enc_key_25, t0.microsoft_access_token AS microsoft_access_token_26, t0.oauth_state AS oauth_state_27, t0.access_token_cache AS access_token_cache_28, t0.notifications AS notifications_29, t0.push_ids AS push_ids_30, t0.emergency_contact_name AS emergency_contact_name_31, t0.emergency_contact_phone AS emergency_contact_phone_32, t0.personal_email_address AS personal_email_address_33, t0.allow_access AS allow_access_34, t0.old_username AS old_username_35, t0.old_id AS old_id_36, t0.show_completed_tasks AS show_completed_tasks_37, t0.uuid AS uuid_38, t0.disabled AS disabled_39, t0.staff_department_id AS staff_department_id_40 FROM \"user\" t0"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.controller" to listener "App\EventListener\ActivityListener::onKernelController". {
"event": "kernel.controller",
"listener": "App\\EventListener\\ActivityListener::onKernelController"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TwigEventSubscriber::onControllerEvent". {
"event": "kernel.controller",
"listener": "App\\EventSubscriber\\TwigEventSubscriber::onControllerEvent"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 23:33:23 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 23:33:23 | 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 23:33:23 | 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 23:33:23 | event |
Notified event "kernel.controller_arguments" to listener "ContainerF778wmp\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerF778wmp\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
|
| DEBUG 23:33:23 | 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"
}
|
| DEBUG 23:33:23 | doctrine |
Executing query: SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.is_verified AS is_verified_7, t0.username AS username_8, t0.remote_id AS remote_id_9, t0.phone AS phone_10, t0.address AS address_11, t0.postcode AS postcode_12, t0.mobile AS mobile_13, t0.last_login AS last_login_14, t0.visits AS visits_15, t0.active AS active_16, t0.signature AS signature_17, t0.avatar AS avatar_18, t0.job_title AS job_title_19, t0.last_activity_at AS last_activity_at_20, t0.notes AS notes_21, t0.previous_id AS previous_id_22, t0.old_group AS old_group_23, t0.saved_view AS saved_view_24, t0.enc_key AS enc_key_25, t0.microsoft_access_token AS microsoft_access_token_26, t0.oauth_state AS oauth_state_27, t0.access_token_cache AS access_token_cache_28, t0.notifications AS notifications_29, t0.push_ids AS push_ids_30, t0.emergency_contact_name AS emergency_contact_name_31, t0.emergency_contact_phone AS emergency_contact_phone_32, t0.personal_email_address AS personal_email_address_33, t0.allow_access AS allow_access_34, t0.old_username AS old_username_35, t0.old_id AS old_id_36, t0.show_completed_tasks AS show_completed_tasks_37, t0.uuid AS uuid_38, t0.disabled AS disabled_39, t0.staff_department_id AS staff_department_id_40 FROM "user" t0 {
"sql": "SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.is_verified AS is_verified_7, t0.username AS username_8, t0.remote_id AS remote_id_9, t0.phone AS phone_10, t0.address AS address_11, t0.postcode AS postcode_12, t0.mobile AS mobile_13, t0.last_login AS last_login_14, t0.visits AS visits_15, t0.active AS active_16, t0.signature AS signature_17, t0.avatar AS avatar_18, t0.job_title AS job_title_19, t0.last_activity_at AS last_activity_at_20, t0.notes AS notes_21, t0.previous_id AS previous_id_22, t0.old_group AS old_group_23, t0.saved_view AS saved_view_24, t0.enc_key AS enc_key_25, t0.microsoft_access_token AS microsoft_access_token_26, t0.oauth_state AS oauth_state_27, t0.access_token_cache AS access_token_cache_28, t0.notifications AS notifications_29, t0.push_ids AS push_ids_30, t0.emergency_contact_name AS emergency_contact_name_31, t0.emergency_contact_phone AS emergency_contact_phone_32, t0.personal_email_address AS personal_email_address_33, t0.allow_access AS allow_access_34, t0.old_username AS old_username_35, t0.old_id AS old_id_36, t0.show_completed_tasks AS show_completed_tasks_37, t0.uuid AS uuid_38, t0.disabled AS disabled_39, t0.staff_department_id AS staff_department_id_40 FROM \"user\" t0"
}
|
| DEBUG 23:33:23 | doctrine |
Executing query: SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.is_verified AS is_verified_7, t0.username AS username_8, t0.remote_id AS remote_id_9, t0.phone AS phone_10, t0.address AS address_11, t0.postcode AS postcode_12, t0.mobile AS mobile_13, t0.last_login AS last_login_14, t0.visits AS visits_15, t0.active AS active_16, t0.signature AS signature_17, t0.avatar AS avatar_18, t0.job_title AS job_title_19, t0.last_activity_at AS last_activity_at_20, t0.notes AS notes_21, t0.previous_id AS previous_id_22, t0.old_group AS old_group_23, t0.saved_view AS saved_view_24, t0.enc_key AS enc_key_25, t0.microsoft_access_token AS microsoft_access_token_26, t0.oauth_state AS oauth_state_27, t0.access_token_cache AS access_token_cache_28, t0.notifications AS notifications_29, t0.push_ids AS push_ids_30, t0.emergency_contact_name AS emergency_contact_name_31, t0.emergency_contact_phone AS emergency_contact_phone_32, t0.personal_email_address AS personal_email_address_33, t0.allow_access AS allow_access_34, t0.old_username AS old_username_35, t0.old_id AS old_id_36, t0.show_completed_tasks AS show_completed_tasks_37, t0.uuid AS uuid_38, t0.disabled AS disabled_39, t0.staff_department_id AS staff_department_id_40 FROM "user" t0 {
"sql": "SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.is_verified AS is_verified_7, t0.username AS username_8, t0.remote_id AS remote_id_9, t0.phone AS phone_10, t0.address AS address_11, t0.postcode AS postcode_12, t0.mobile AS mobile_13, t0.last_login AS last_login_14, t0.visits AS visits_15, t0.active AS active_16, t0.signature AS signature_17, t0.avatar AS avatar_18, t0.job_title AS job_title_19, t0.last_activity_at AS last_activity_at_20, t0.notes AS notes_21, t0.previous_id AS previous_id_22, t0.old_group AS old_group_23, t0.saved_view AS saved_view_24, t0.enc_key AS enc_key_25, t0.microsoft_access_token AS microsoft_access_token_26, t0.oauth_state AS oauth_state_27, t0.access_token_cache AS access_token_cache_28, t0.notifications AS notifications_29, t0.push_ids AS push_ids_30, t0.emergency_contact_name AS emergency_contact_name_31, t0.emergency_contact_phone AS emergency_contact_phone_32, t0.personal_email_address AS personal_email_address_33, t0.allow_access AS allow_access_34, t0.old_username AS old_username_35, t0.old_id AS old_id_36, t0.show_completed_tasks AS show_completed_tasks_37, t0.uuid AS uuid_38, t0.disabled AS disabled_39, t0.staff_department_id AS staff_department_id_40 FROM \"user\" t0"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://joedemo.juiceoffice.co.uk/xmlrpc.php"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/html/office/JuiceOffice/JuiceOffice/vendor/autoload_runtime.php')
(public/index.php:7)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/xmlrpc.php/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/xmlrpc.php/')
(vendor/symfony/routing/Matcher/UrlMatcher.php:89)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:188)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:206)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:126)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:159)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/html/office/JuiceOffice/JuiceOffice/vendor/autoload_runtime.php')
(public/index.php:7)
|