http://tickets.spartanit.pro/en/

Exceptions

An exception has been thrown during the rendering of a template ("Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)").

Exceptions 2

Twig\Error\ RuntimeError

  1.             </div>
  2.         {% endif %}
  3.         <div class="uv-notifications-wrapper">
  4.             {% if uvdesk_service.requestHeadersSent() == false %}
  5.                 {% for flashMessage in app.session.flashbag.get('success') %}
  6.                     <div class="uv-notification page-load uv-success">
  7.                         <span class="uv-notification-close"></span>
  8.                         <p>{{ flashMessage|raw }}</p>
  9.                     </div>
  10.                 {% endfor %}
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@UVDeskSupportCenter/Knowledgebase/index.html.twig"));
  3.         $this->parent $this->loadTemplate("@UVDeskSupportCenter/Templates/layout.html.twig""@UVDeskSupportCenter/Knowledgebase/index.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  7.         
  8.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context, \func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
  2.             @trigger_error('Using the "templating" service is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  3.             $content $this->container->get('templating')->render($view$parameters);
  4.         } elseif ($this->container->has('twig')) {
  5.             $content $this->container->get('twig')->render($view$parameters);
  6.         } else {
  7.             throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
  8.         }
  9.         if (null === $response) {
  1.                 'description' => $category['description'],
  2.                 'articles' => $article
  3.             ];
  4.         }, $solutionRepository->getAllCategories(102));
  5.         return $this->render('@UVDeskSupportCenter//Knowledgebase//index.html.twig'$twigResponse);
  6.     }
  7.     public function listCategories(Request $request)
  8.     {
  9.         $this->isKnowledgebaseActive();
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  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.     }
Kernel->handle(object(Request)) in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

ErrorException

Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)

  1.      * @return int|false
  2.      */
  3.     #[\ReturnTypeWillChange]
  4.     public function gc($maxlifetime)
  5.     {
  6.         return $this->handler->gc($maxlifetime);
  7.     }
  8. }
  1.      * @return int|false
  2.      */
  3.     #[\ReturnTypeWillChange]
  4.     public function gc($maxlifetime)
  5.     {
  6.         return $this->handler->gc($maxlifetime);
  7.     }
  8.     /**
  9.      * @return bool
  10.      */
SessionHandlerProxy->gc(1440)
  1.         if (filter_var(ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOLEAN) && headers_sent($file$line)) {
  2.             throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.'$file$line));
  3.         }
  4.         // ok to try and start the session
  5.         if (!session_start()) {
  6.             throw new \RuntimeException('Failed to start the session.');
  7.         }
  8.         if (null !== $this->emulateSameSite) {
  9.             $originalCookie SessionUtils::popSessionCookie(session_name(), session_id());
  1.         }
  2.         if (!$this->started && $this->saveHandler->isActive()) {
  3.             $this->loadSession();
  4.         } elseif (!$this->started) {
  5.             $this->start();
  6.         }
  7.         return $this->bags[$name];
  8.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getBag(string $name)
  5.     {
  6.         $bag $this->storage->getBag($name);
  7.         return method_exists($bag'getBag') ? $bag->getBag() : $bag;
  8.     }
  9.     /**
  1.      *
  2.      * @return FlashBagInterface
  3.      */
  4.     public function getFlashBag()
  5.     {
  6.         return $this->getBag($this->flashName);
  7.     }
  8.     /**
  9.      * Gets the attributebag interface.
  10.      *
  1.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.         // line 93
  2.         if ((=== twig_compare(twig_get_attribute($this->env$this->source, (isset($context["uvdesk_service"]) || array_key_exists("uvdesk_service"$context) ? $context["uvdesk_service"] : (function () { throw new RuntimeError('Variable "uvdesk_service" does not exist.'93$this->source); })()), "requestHeadersSent", [], "method"falsefalsefalse93), false))) {
  3.             // line 94
  4.             echo "                ";
  5.             $context['_parent'] = $context;
  6.             $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'94$this->source); })()), "session", [], "any"falsefalsefalse94), "flashbag", [], "any"falsefalsefalse94), "get", [=> "success"], "method"falsefalsefalse94));
  7.             foreach ($context['_seq'] as $context["_key"] => $context["flashMessage"]) {
  8.                 // line 95
  9.                 echo "                    <div class=\"uv-notification page-load uv-success\">
  10.                         <span class=\"uv-notification-close\"></span>
  11.                         <p>";
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@UVDeskSupportCenter/Knowledgebase/index.html.twig"));
  3.         $this->parent $this->loadTemplate("@UVDeskSupportCenter/Templates/layout.html.twig""@UVDeskSupportCenter/Knowledgebase/index.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  7.         
  8.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context, \func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
  2.             @trigger_error('Using the "templating" service is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  3.             $content $this->container->get('templating')->render($view$parameters);
  4.         } elseif ($this->container->has('twig')) {
  5.             $content $this->container->get('twig')->render($view$parameters);
  6.         } else {
  7.             throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
  8.         }
  9.         if (null === $response) {
  1.                 'description' => $category['description'],
  2.                 'articles' => $article
  3.             ];
  4.         }, $solutionRepository->getAllCategories(102));
  5.         return $this->render('@UVDeskSupportCenter//Knowledgebase//index.html.twig'$twigResponse);
  6.     }
  7.     public function listCategories(Request $request)
  8.     {
  9.         $this->isKnowledgebaseActive();
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  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.     }
Kernel->handle(object(Request)) in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 18:27:19 php User Deprecated: Using the WebserverBundle is deprecated since Symfony 4.4. The new Symfony local server has more features, you can use it instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "30bd22"
    },
    "request_uri": "http://tickets.spartanit.pro/_profiler/30bd22",
    "method": "GET"
}
INFO 18:27:19 php User Deprecated: Since symfony/security-csrf 5.3: Passing a "Symfony\Component\HttpFoundation\Session\SessionInterface" to "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage" is deprecated, use a "Symfony\Component\HttpFoundation\RequestStack" instead.
{
    "exception": {}
}
INFO 18:27:19 security Populated the TokenStorage with an anonymous Token.
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 18:27:19 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 18:27:19 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 18:27:19 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 18:27:19 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 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 request Matched route "_profiler_exception_css".
{
    "route": "_profiler_exception_css",
    "route_parameters": {
        "_route": "_profiler_exception_css",
        "_controller": "web_profiler.controller.exception_panel::stylesheet",
        "token": "30bd22"
    },
    "request_uri": "http://tickets.spartanit.pro/_profiler/30bd22/exception.css",
    "method": "GET"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 18:27:19 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 18:27:19 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 18:27:19 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 18:27:19 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"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 18:27:19 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 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
INFO 18:27:19 request Matched route "_profiler_search_bar".
{
    "route": "_profiler_search_bar",
    "route_parameters": {
        "_route": "_profiler_search_bar",
        "_controller": "web_profiler.controller.profiler::searchBarAction"
    },
    "request_uri": "http://tickets.spartanit.pro/_profiler/search_bar",
    "method": "GET"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 18:27:19 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 18:27:19 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 18:27:19 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 18:27:19 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"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 18:27:19 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 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 18:27:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
INFO 18:27:19 request Matched route "_profiler_exception".
{
    "route": "_profiler_exception",
    "route_parameters": {
        "_route": "_profiler_exception",
        "_controller": "web_profiler.controller.exception_panel::body",
        "token": "30bd22"
    },
    "request_uri": "http://tickets.spartanit.pro/_profiler/30bd22/exception",
    "method": "GET"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:27:19 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 18:27:19 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 18:27:19 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 18:27:19 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 18:27:19 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 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:19 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 18:27:20 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}

Stack Traces 2

[2/2] RuntimeError

Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)").

  at vendor/uvdesk/support-center-bundle/Resources/views/Templates/layout.html.twig:94
  at Twig\Template->displayWithErrorHandling(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('canonical' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_canonical'), 'title' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_title'), 'metaDescription' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_metaDescription'), 'metaKeywords' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_metaKeywords'), 'ogtitle' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_ogtitle'), 'ogcanonical' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_ogcanonical'), 'twtitle' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_twtitle'), 'head' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_head'), 'templateCSS' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_templateCSS'), 'header' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_header'), 'tabHeader' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_tabHeader'), 'wrapper' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_wrapper'), 'body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (var/cache/dev/twig/4b/4b8cef4c154681025a7f4c746f175034c9089d84d9c1e277dd4d755a30c46c61.php:49)
  at __TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0->doDisplay(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('@UVDeskSupportCenter//Knowledgebase//index.html.twig', array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/symfony/framework-bundle/Controller/ControllerTrait.php:235)
  at Symfony\Bundle\FrameworkBundle\Controller\Controller->render('@UVDeskSupportCenter//Knowledgebase//index.html.twig', array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/uvdesk/support-center-bundle/Controller/Website.php:108)
  at Webkul\UVDesk\SupportCenterBundle\Controller\Website->home(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:25)                

[1/2] ErrorException

ErrorException:
Notice: SessionHandler::gc(): ps_files_cleanup_dir: opendir(/var/lib/php/sessions) failed: Permission denied (13)

  at vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php:106
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler->gc(1440)
     (vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php:89)
  at Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy->gc(1440)
  at session_start()
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:156)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:323)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->getBag('flashes')
     (vendor/symfony/http-foundation/Session/Session.php:259)
  at Symfony\Component\HttpFoundation\Session\Session->getBag('flashes')
     (vendor/symfony/http-foundation/Session/Session.php:271)
  at Symfony\Component\HttpFoundation\Session\Session->getFlashBag()
     (vendor/twig/twig/src/Extension/CoreExtension.php:1544)
  at twig_get_attribute(object(Environment), object(Source), object(Session), 'flashbag', array(), 'any', false, false, false, 94)
     (var/cache/dev/twig/98/9892fc114ba68da877ee77e24d7a101c69ebce016232516114e7c61494447e0e.php:279)
  at __TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d->doDisplay(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService), 'websiteDetails' => object(Website), 'websiteConfiguration' => object(KnowledgebaseWebsite), 'themeTemplate' => 'masonryView', 'canonical' => 'http://tickets.spartanit.pro/en/', 'bodyClass' => '', 'bodySkinClass' => '', 'broadcastMessage' => false, '_parent' => array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService), 'websiteDetails' => object(Website), 'websiteConfiguration' => object(KnowledgebaseWebsite), 'themeTemplate' => 'masonryView', 'canonical' => 'http://tickets.spartanit.pro/en/', 'bodyClass' => '', 'bodySkinClass' => '', 'broadcastMessage' => false)), array('canonical' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_canonical'), 'title' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_title'), 'metaDescription' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_metaDescription'), 'metaKeywords' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_metaKeywords'), 'ogtitle' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_ogtitle'), 'ogcanonical' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_ogcanonical'), 'twtitle' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_twtitle'), 'head' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_head'), 'templateCSS' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_templateCSS'), 'header' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_header'), 'tabHeader' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_tabHeader'), 'wrapper' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_wrapper'), 'body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('canonical' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_canonical'), 'title' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_title'), 'metaDescription' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_metaDescription'), 'metaKeywords' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_metaKeywords'), 'ogtitle' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_ogtitle'), 'ogcanonical' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_ogcanonical'), 'twtitle' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_twtitle'), 'head' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_head'), 'templateCSS' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_templateCSS'), 'header' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_header'), 'tabHeader' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_tabHeader'), 'wrapper' => array(object(__TwigTemplate_54906ab45126efa2972bc0c2803d4201cd321ca8bf0489e71bea20716ecb3b6d), 'block_wrapper'), 'body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (var/cache/dev/twig/4b/4b8cef4c154681025a7f4c746f175034c9089d84d9c1e277dd4d755a30c46c61.php:49)
  at __TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0->doDisplay(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array()), 'app' => object(AppVariable), 'default_agent_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-batman.png', 'default_customer_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-ironman.png', 'default_helpdesk_image_path' => 'bundles/uvdeskcoreframework/images/uv-avatar-uvdesk.png', 'max_post_size' => 8388608, 'max_file_uploads' => 20, 'upload_max_filesize' => 2097152, 'user_service' => object(UserService), 'uvdesk_service' => object(UVDeskService), 'recaptcha_service' => object(ReCaptchaService), 'ticket_service' => object(TicketService), 'csrf_token_generator' => object(CsrfTokenManager), 'email_service' => object(EmailService), 'uvdesk_extensibles' => object(ExtendableComponentManager), 'uvdesk_core_file_system' => object(FileSystem), 'uvdesk_automations' => object(AutomationService)), array('body' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_body'), 'footer' => array(object(__TwigTemplate_feaf4f6d5d6dd82110c5af86737bb314f6b886ba8fa71f97f93f5e868e3c2aa0), 'block_footer')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('@UVDeskSupportCenter//Knowledgebase//index.html.twig', array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/symfony/framework-bundle/Controller/ControllerTrait.php:235)
  at Symfony\Bundle\FrameworkBundle\Controller\Controller->render('@UVDeskSupportCenter//Knowledgebase//index.html.twig', array('searchDisable' => false, 'popArticles' => array(array('id' => 1, 'name' => 'How to access remote assets over vpn', 'slug' => 'vpn-set-up', 'content' => '<p>FortiClient VPN is a popular virtual private network (VPN) client that allows you to securely access your company\'s resources from anywhere in the world. Whether you\'re working from home, on a business trip, or simply outside the office, FortiClient VPN makes it easy to connect to your company\'s network and access the files, applications, and data that you need.</p><p>&nbsp;</p><p>To get started with FortiClient VPN, follow these simple steps:</p><p>&nbsp;</p><p>Step 1: Download and Install FortiClient VPN</p><p>&nbsp;</p><p>The first step is to download and install the FortiClient VPN client on your computer. You can download the client from the Fortinet website, or from <a href="https://links.fortinet.com/forticlient/win/vpnagent">here</a>&nbsp;</p><p>&nbsp;</p><p>Step 2: Configure FortiClient VPN</p><p>&nbsp;</p><p>Once FortiClient VPN is installed, you\'ll need to configure it to connect to your company\'s network. To do this, open the FortiClient VPN application and click on the "Remote Access" tab. From there, click on the "Configure VPN" button to begin the configuration process.</p><p>&nbsp;</p><p>Step 3: Enter Connection Details</p><p>&nbsp;</p><p>In the configuration window, you\'ll need to enter the connection details for your company\'s VPN. This includes the server address, login credentials, and any other settings that your IT department has <a href="https://nextcloud.spartanit.pro/index.php/f/1358">provided</a>. Once you\'ve entered all the necessary details, click "Save" to save the configuration.</p><p>&nbsp;</p><p>Step 4: Connect to the VPN</p><p>&nbsp;</p><p>With FortiClient VPN configured, you\'re ready to connect to your company\'s network. To do this, simply click on the "Connect" button in the FortiClient VPN application. You\'ll be prompted to enter your login credentials, and once you\'ve done so, FortiClient VPN will establish a secure connection to your company\'s network.</p><p>&nbsp;</p><p>Step 5: Access Your Company Resources</p><p>&nbsp;</p><p>Once you\'re connected to your company\'s network using FortiClient VPN, you can access your company\'s resources just as if you were in the office. This includes files, applications, and data stored on your company\'s servers. Simply open the appropriate applications and files as you normally would, and FortiClient VPN will ensure that your connection remains secure.</p><p>&nbsp;</p><p>In conclusion, using FortiClient VPN is a simple and secure way to access your company\'s resources from anywhere in the world. By following the steps outlined above, you\'ll be able to connect to your company\'s network and access the files, applications, and data that you need to get your work done.</p>', 'stared' => 1)), 'solutions' => array('results' => array(), 'categories' => array())))
     (vendor/uvdesk/support-center-bundle/Controller/Website.php:108)
  at Webkul\UVDesk\SupportCenterBundle\Controller\Website->home(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:25)