Deprecated: Webkul\UVDesk\SupportCenterBundle\Entity\ArticleViewLog::setUser(): Implicitly marking parameter $user as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/support-center-bundle/Entity/ArticleViewLog.php on line 82

Deprecated: Webkul\UVDesk\SupportCenterBundle\Entity\ArticleViewLog::setArticle(): Implicitly marking parameter $article as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/support-center-bundle/Entity/ArticleViewLog.php on line 105

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setStatus(): Implicitly marking parameter $status as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 802

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setPriority(): Implicitly marking parameter $priority as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 826

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setType(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 850

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setCustomer(): Implicitly marking parameter $customer as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 874

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setAgent(): Implicitly marking parameter $agent as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 898

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setSupportGroup(): Implicitly marking parameter $supportGroup as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 922

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Ticket::setSupportTeam(): Implicitly marking parameter $supportTeam as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Ticket.php on line 946

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Thread::setTicket(): Implicitly marking parameter $ticket as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Thread.php on line 520

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Thread::setUser(): Implicitly marking parameter $user as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Thread.php on line 544

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\TicketRating::setTicket(): Implicitly marking parameter $ticket as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/TicketRating.php on line 144

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\TicketRating::setCustomer(): Implicitly marking parameter $customer as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/TicketRating.php on line 168

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\SupportLabel::setUser(): Implicitly marking parameter $user as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/SupportLabel.php on line 109

Deprecated: Webkul\UVDesk\CoreFrameworkBundle\Entity\Attachment::setThread(): Implicitly marking parameter $thread as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/Attachment.php on line 250
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/TicketRating.php:168) (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/TicketRating.php:168)

Exception

ErrorException

  1. }
  2. if (null === $sessionCookie) {
  3. return null;
  4. }
  5. header_remove('Set-Cookie');
  6. foreach ($otherCookies as $h) {
  7. header($h, false);
  8. }
  9. return $sessionCookie;
  1. $sessionCookieSecure = $sessionOptions['cookie_secure'] ?? false;
  2. $sessionCookieHttpOnly = $sessionOptions['cookie_httponly'] ?? true;
  3. $sessionCookieSameSite = $sessionOptions['cookie_samesite'] ?? Cookie::SAMESITE_LAX;
  4. $sessionUseCookies = $sessionOptions['use_cookies'] ?? true;
  5. SessionUtils::popSessionCookie($sessionName, $sessionId);
  6. if ($sessionUseCookies) {
  7. $request = $event->getRequest();
  8. $requestSessionCookieId = $request->cookies->get($sessionName);
  1. $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function filterResponse(Response $response, Request $request, int $type): Response
  3. {
  4. $event = new ResponseEvent($this, $request, $type, $response);
  5. $this->dispatcher->dispatch($event, KernelEvents::RESPONSE);
  6. $this->finishRequest($request, $type);
  7. return $event->getResponse();
  8. }
in vendor/symfony/http-kernel/HttpKernel.php -> filterResponse (line 184)
  1. throw new ControllerDoesNotReturnResponseException($msg, $controller, __FILE__, __LINE__ - 17);
  2. }
  3. }
  4. return $this->filterResponse($response, $request, $type);
  5. }
  6. /**
  7. * Filters a response object.
  8. *
  1. {
  2. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3. $this->requestStack->push($request);
  4. try {
  5. return $this->handleRaw($request, $type);
  6. } catch (\Exception $e) {
  7. if ($e instanceof RequestExceptionInterface) {
  8. $e = new BadRequestHttpException($e->getMessage(), $e);
  9. }
  10. if (false === $catch) {
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $this->request = $request;
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send();
  7. if ($this->kernel instanceof TerminableInterface) {
  8. $this->kernel->terminate($this->request, $response);
  9. }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/html/uvdesk-community-v1.1.8/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 1

Level Channel Message
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::$container is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::$mappingResource is deprecated
{
    "exception": {}
}
INFO 13:54:30 request Matched route "helpdesk_knowledgebase_read_slug_article".
{
    "route": "helpdesk_knowledgebase_read_slug_article",
    "route_parameters": {
        "_route": "helpdesk_knowledgebase_read_slug_article",
        "slug": "httpsupportgpsytechcom",
        "_controller": "Webkul\\UVDesk\\SupportCenterBundle\\Controller\\Website::viewArticle",
        "_locale": "en"
    },
    "request_uri": "https://support.gpsytech.com/en/blog/httpsupportgpsytechcom",
    "method": "GET"
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.customer" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.customer" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.back_support" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.rememberme.back_support" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\RememberMeAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.back_support" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 security Populated the TokenStorage with an anonymous Token.
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Webkul\UVDesk\CoreFrameworkBundle\EventListener\SessionLifetime::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\CoreFrameworkBundle\\EventListener\\SessionLifetime::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Webkul\UVDesk\ApiBundle\EventListeners\API\KernelRequest::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ApiBundle\\EventListeners\\API\\KernelRequest::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Services\UVDeskService::$userService is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\MailboxBundle\Services\MailboxService::$swiftMailer is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Services\TicketService::$mailboxService is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Services\TicketService::$translator is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Services\MicrosoftIntegration::$entityManager is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Framework\ExtendableComponentManager::$container is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\AsideTemplate::$twig is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\AsideTemplate::$userService is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\AsideTemplate::$requestStack is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\DashboardTemplate::$router is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\DashboardTemplate::$container is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\DashboardTemplate::$requestStack is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\NavigationTemplate::$router is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\NavigationTemplate::$container is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\NavigationTemplate::$requestStack is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\NavigationTemplate::$userService is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\NavigationTemplate::$translator is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\HomepageTemplate::$router is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\HomepageTemplate::$userService is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\HomepageTemplate::$translator is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\SearchTemplate::$twig is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\SearchTemplate::$translator is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Dashboard\SearchTemplate::$userService is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Tickets\QuickActionButtonCollection::$twig is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Tickets\QuickActionButtonCollection::$dashboard is deprecated
{
    "exception": {}
}
INFO 13:54:30 deprecation Deprecated: Creation of dynamic property Webkul\UVDesk\CoreFrameworkBundle\Tickets\QuickActionButtonCollection::$userService is deprecated
{
    "exception": {}
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:54:30 event Notified event "kernel.controller_arguments" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelControllerArguments"
}
DEBUG 13:54:30 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 13:54:30 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 13:54:30 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 13:54:30 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "charset": "utf8mb4",
        "idle_connection_ttl": 600,
        "host": "127.0.0.1",
        "port": 3306,
        "user": "uvdesk_dbuser",
        "password": "<redacted>",
        "driverOptions": {
            "1002": "SET sql_mode=(SELECT REPLACE(@@sql_mode, \"ONLY_FULL_GROUP_BY\", \"\"))"
        },
        "serverVersion": "15.1",
        "defaultTableOptions": {
            "charset": "utf8mb4",
            "collate": "utf8mb4_unicode_ci"
        },
        "dbname": "uvdeskdb"
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1",
    "params": {
        "1": "knowledgebase"
    },
    "types": {
        "1": 2
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.public_resource_access_attempt_limit AS public_resource_access_attempt_limit_28, t0.remove_branding_content AS remove_branding_content_29, t0.website AS website_30 FROM uv_website_knowledgebase t0 WHERE t0.website = ? AND t0.status = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.public_resource_access_attempt_limit AS public_resource_access_attempt_limit_28, t0.remove_branding_content AS remove_branding_content_29, t0.website AS website_30 FROM uv_website_knowledgebase t0 WHERE t0.website = ? AND t0.status = ? LIMIT 1",
    "params": {
        "1": 2,
        "2": true
    },
    "types": {
        "1": 1,
        "2": 2
    }
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: Accessing the "security.token_storage" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.3: Accessing the "security.token_storage" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.slug AS slug_3, t0.content AS content_4, t0.meta_description AS meta_description_5, t0.keywords AS keywords_6, t0.viewed AS viewed_7, t0.status AS status_8, t0.date_added AS date_added_9, t0.date_updated AS date_updated_10, t0.stared AS stared_11, t0.meta_title AS meta_title_12 FROM uv_article t0 WHERE t0.status = ? AND t0.slug = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.slug AS slug_3, t0.content AS content_4, t0.meta_description AS meta_description_5, t0.keywords AS keywords_6, t0.viewed AS viewed_7, t0.status AS status_8, t0.date_added AS date_added_9, t0.date_updated AS date_updated_10, t0.stared AS stared_11, t0.meta_title AS meta_title_12 FROM uv_article t0 WHERE t0.status = ? AND t0.slug = ? LIMIT 1",
    "params": {
        "1": 1,
        "2": "httpsupportgpsytechcom"
    },
    "types": {
        "1": 1,
        "2": 2
    }
}
DEBUG 13:54:30 doctrine Beginning transaction
DEBUG 13:54:30 doctrine Executing statement: INSERT INTO uv_article_view_log (viewed_at, user_id, article_id) VALUES (?, ?, ?) (parameters: {params}, types: {types})
{
    "sql": "INSERT INTO uv_article_view_log (viewed_at, user_id, article_id) VALUES (?, ?, ?)",
    "params": {
        "1": "2026-01-28 13:54:30",
        "2": null,
        "3": 1
    },
    "types": {
        "1": 2,
        "2": 1,
        "3": 1
    }
}
DEBUG 13:54:30 doctrine Executing statement: UPDATE uv_article SET viewed = ?, date_updated = ? WHERE id = ? (parameters: {params}, types: {types})
{
    "sql": "UPDATE uv_article SET viewed = ?, date_updated = ? WHERE id = ?",
    "params": {
        "1": 5,
        "2": "2026-01-28 13:54:30",
        "3": 1
    },
    "types": {
        "1": 1,
        "2": 2,
        "3": 1
    }
}
DEBUG 13:54:30 doctrine Committing transaction
DEBUG 13:54:30 doctrine Executing statement: SELECT user_id, is_helpful, description FROM uv_article_feedback WHERE article_id = 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT user_id, is_helpful, description FROM uv_article_feedback WHERE article_id = 1",
    "params": [],
    "types": []
}
DEBUG 13:54:30 doctrine Executing statement: SELECT DISTINCT u0_.id AS id_0, u0_.name AS name_1 FROM uv_article u1_ LEFT JOIN uv_article_tags u2_ ON (u2_.article_id = u1_.id) LEFT JOIN uv_tag u0_ ON (u2_.tag_id = u0_.id) WHERE u2_.article_id = ? AND u2_.tag_id = u0_.id (parameters: {params}, types: {types})
{
    "sql": "SELECT DISTINCT u0_.id AS id_0, u0_.name AS name_1 FROM uv_article u1_ LEFT JOIN uv_article_tags u2_ ON (u2_.article_id = u1_.id) LEFT JOIN uv_tag u0_ ON (u2_.tag_id = u0_.id) WHERE u2_.article_id = ? AND u2_.tag_id = u0_.id",
    "params": {
        "1": 1
    },
    "types": {
        "1": 1
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT u0_.id AS id_0, u0_.source AS source_1, u0_.skype_id AS skype_id_2, u0_.contact_number AS contact_number_3, u0_.designation AS designation_4, u0_.signature AS signature_5, u0_.profile_image_path AS profile_image_path_6, u0_.created_at AS created_at_7, u0_.updated_at AS updated_at_8, u0_.last_login AS last_login_9, u0_.is_active AS is_active_10, u0_.is_online AS is_online_11, u0_.is_verified AS is_verified_12, u0_.is_starred AS is_starred_13, u0_.ticket_access_level AS ticket_access_level_14, u0_.user_id AS user_id_15, u0_.supportRole_id AS supportRole_id_16 FROM uv_user_instance u0_ LEFT JOIN uv_article_history u1_ ON (u1_.user_id = u0_.user_id) WHERE u1_.article_id = ? AND u0_.supportRole_id <> ? ORDER BY u1_.date_added ASC LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT u0_.id AS id_0, u0_.source AS source_1, u0_.skype_id AS skype_id_2, u0_.contact_number AS contact_number_3, u0_.designation AS designation_4, u0_.signature AS signature_5, u0_.profile_image_path AS profile_image_path_6, u0_.created_at AS created_at_7, u0_.updated_at AS updated_at_8, u0_.last_login AS last_login_9, u0_.is_active AS is_active_10, u0_.is_online AS is_online_11, u0_.is_verified AS is_verified_12, u0_.is_starred AS is_starred_13, u0_.ticket_access_level AS ticket_access_level_14, u0_.user_id AS user_id_15, u0_.supportRole_id AS supportRole_id_16 FROM uv_user_instance u0_ LEFT JOIN uv_article_history u1_ ON (u1_.user_id = u0_.user_id) WHERE u1_.article_id = ? AND u0_.supportRole_id <> ? ORDER BY u1_.date_added ASC LIMIT 1",
    "params": {
        "1": 1,
        "2": 4
    },
    "types": {
        "1": 1,
        "2": 1
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT DISTINCT u0_.id AS id_0, u0_.related_article_id AS related_article_id_1, u1_.name AS name_2, u1_.stared AS stared_3, u1_.status AS status_4, u1_.slug AS slug_5 FROM uv_related_articles u0_ LEFT JOIN uv_article u1_ ON (u0_.related_article_id = u1_.id) WHERE u0_.article_id = ? AND u1_.status IN (?) ORDER BY u0_.id DESC (parameters: {params}, types: {types})
{
    "sql": "SELECT DISTINCT u0_.id AS id_0, u0_.related_article_id AS related_article_id_1, u1_.name AS name_2, u1_.stared AS stared_3, u1_.status AS status_4, u1_.slug AS slug_5 FROM uv_related_articles u0_ LEFT JOIN uv_article u1_ ON (u0_.related_article_id = u1_.id) WHERE u0_.article_id = ? AND u1_.status IN (?) ORDER BY u0_.id DESC",
    "params": {
        "1": 1,
        "2": 1
    },
    "types": {
        "1": 1,
        "2": 1
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT u0_.id AS id_0, u0_.name AS name_1, u0_.slug AS slug_2, u0_.content AS content_3, u0_.stared AS stared_4 FROM uv_article u0_ WHERE u0_.status = ? ORDER BY u0_.viewed DESC LIMIT 10 (parameters: {params}, types: {types})
{
    "sql": "SELECT u0_.id AS id_0, u0_.name AS name_1, u0_.slug AS slug_2, u0_.content AS content_3, u0_.stared AS stared_4 FROM uv_article u0_ WHERE u0_.status = ? ORDER BY u0_.viewed DESC LIMIT 10",
    "params": {
        "1": 1
    },
    "types": {
        "1": 1
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1",
    "params": {
        "1": "knowledgebase"
    },
    "types": {
        "1": 2
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1",
    "params": {
        "1": "knowledgebase"
    },
    "types": {
        "1": 2
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.public_resource_access_attempt_limit AS public_resource_access_attempt_limit_28, t0.remove_branding_content AS remove_branding_content_29, t0.website AS website_30 FROM uv_website_knowledgebase t0 WHERE t0.website = ? AND t0.is_active = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.public_resource_access_attempt_limit AS public_resource_access_attempt_limit_28, t0.remove_branding_content AS remove_branding_content_29, t0.website AS website_30 FROM uv_website_knowledgebase t0 WHERE t0.website = ? AND t0.is_active = ? LIMIT 1",
    "params": {
        "1": 2,
        "2": 1
    },
    "types": {
        "1": 1,
        "2": 5
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.display_user_presence_indicator AS display_user_presence_indicator_3, t0.code AS code_4, t0.logo AS logo_5, t0.theme_color AS theme_color_6, t0.favicon AS favicon_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.is_active AS is_active_10, t0.timezone AS timezone_11, t0.webhook_url AS webhook_url_12, t0.timeformat AS timeformat_13, t0.business_hour AS business_hour_14, t0.business_hour_status AS business_hour_status_15 FROM uv_website t0 WHERE t0.code = ? LIMIT 1",
    "params": {
        "1": "knowledgebase"
    },
    "types": {
        "1": 2
    }
}
DEBUG 13:54:30 doctrine Executing statement: SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.public_resource_access_attempt_limit AS public_resource_access_attempt_limit_28, t0.remove_branding_content AS remove_branding_content_29, t0.website AS website_30 FROM uv_website_knowledgebase t0 WHERE t0.website = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.public_resource_access_attempt_limit AS public_resource_access_attempt_limit_28, t0.remove_branding_content AS remove_branding_content_29, t0.website AS website_30 FROM uv_website_knowledgebase t0 WHERE t0.website = ? LIMIT 1",
    "params": {
        "1": 2
    },
    "types": {
        "1": 1
    }
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/security-bundle 5.4: The "Symfony\Bundle\SecurityBundle\Security\FirewallConfig::allowsAnonymous()" method is deprecated.
{
    "exception": {}
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Webkul\UVDesk\ApiBundle\EventListeners\API\KernelRequest::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Webkul\\UVDesk\\ApiBundle\\EventListeners\\API\\KernelRequest::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 13:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
CRITICAL 13:54:30 request Uncaught PHP Exception ErrorException: "Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/TicketRating.php:168)" at /var/www/html/uvdesk-community-v1.1.8/vendor/symfony/http-foundation/Session/SessionUtils.php line 52
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Webkul\UVDesk\CoreFrameworkBundle\EventListener\SessionLifetime::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\CoreFrameworkBundle\\EventListener\\SessionLifetime::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Webkul\UVDesk\ApiBundle\EventListeners\API\KernelRequest::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ApiBundle\\EventListeners\\API\\KernelRequest::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 13:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
INFO 13:54:30 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:54:30 event Notified event "kernel.controller_arguments" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelControllerArguments"
}
DEBUG 13:54:30 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 13:54:30 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 13:54:30 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Trace

ErrorException
ErrorException:
Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/uvdesk-community-v1.1.8/vendor/uvdesk/core-framework/Entity/TicketRating.php:168)

  at vendor/symfony/http-foundation/Session/SessionUtils.php:52
  at Symfony\Component\HttpFoundation\Session\SessionUtils::popSessionCookie()
     (vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:165)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->onKernelResponse()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:196)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse()
     (vendor/symfony/http-kernel/HttpKernel.php:184)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  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:35)
  at require_once('/var/www/html/uvdesk-community-v1.1.8/vendor/autoload_runtime.php')
     (public/index.php:5)                
Loading…
Loading the web debug toolbar…
Attempt #