Exceptions
Exceptions 2
Twig\Error\ RuntimeError
</div>
{% endif %}
<div class="uv-notifications-wrapper">
{% if uvdesk_service.requestHeadersSent() == false %}
{% for flashMessage in app.session.flashbag.get('success') %}
<div class="uv-notification page-load uv-success">
<span class="uv-notification-close"></span>
<p>{{ flashMessage|raw }}</p>
</div>
{% endfor %}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
in
var/cache/dev/twig/4b/4b8cef4c154681025a7f4c746f175034c9089d84d9c1e277dd4d755a30c46c61.php
->
display
(line 49)
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@UVDeskSupportCenter/Knowledgebase/index.html.twig"));
$this->parent = $this->loadTemplate("@UVDeskSupportCenter/Templates/layout.html.twig", "@UVDeskSupportCenter/Knowledgebase/index.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 40)
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 277)
in
vendor/symfony/framework-bundle/Controller/ControllerTrait.php
->
render
(line 235)
if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
@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);
$content = $this->container->get('templating')->render($view, $parameters);
} elseif ($this->container->has('twig')) {
$content = $this->container->get('twig')->render($view, $parameters);
} else {
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".');
}
if (null === $response) {
in
vendor/uvdesk/support-center-bundle/Controller/Website.php
->
render
(line 108)
in
vendor/symfony/http-kernel/HttpKernel.php
->
home
(line 158)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 80)
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 201)
ErrorException
in
vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php
->
gc
(line 89)
SessionHandlerProxy->gc(1440)
in
vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
session_start
(line 156)
if (filter_var(ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOLEAN) && headers_sent($file, $line)) {
throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line));
}
// ok to try and start the session
if (!session_start()) {
throw new \RuntimeException('Failed to start the session.');
}
if (null !== $this->emulateSameSite) {
$originalCookie = SessionUtils::popSessionCookie(session_name(), session_id());
in
vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php
->
start
(line 323)
in
vendor/symfony/http-foundation/Session/Session.php
->
getBag
(line 259)
in
vendor/symfony/http-foundation/Session/Session.php
->
getBag
(line 271)
in
vendor/twig/twig/src/Extension/CoreExtension.php
->
getFlashBag
(line 1544)
}
// Some objects throw exceptions when they have __call, and the method we try
// to call is not supported. If ignoreStrictCheck is true, we should return null.
try {
$ret = $object->$method(...$arguments);
} catch (\BadMethodCallException $e) {
if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
return;
}
throw $e;
in
var/cache/dev/twig/98/9892fc114ba68da877ee77e24d7a101c69ebce016232516114e7c61494447e0e.php
twig_get_attribute
(line 279)
// line 93
if ((0 === 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", false, false, false, 93), false))) {
// line 94
echo " ";
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->source, twig_get_attribute($this->env, $this->source, twig_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", false, false, false, 94), "flashbag", [], "any", false, false, false, 94), "get", [0 => "success"], "method", false, false, false, 94));
foreach ($context['_seq'] as $context["_key"] => $context["flashMessage"]) {
// line 95
echo " <div class=\"uv-notification page-load uv-success\">
<span class=\"uv-notification-close\"></span>
<p>";
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
in
var/cache/dev/twig/4b/4b8cef4c154681025a7f4c746f175034c9089d84d9c1e277dd4d755a30c46c61.php
->
display
(line 49)
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@UVDeskSupportCenter/Knowledgebase/index.html.twig"));
$this->parent = $this->loadTemplate("@UVDeskSupportCenter/Templates/layout.html.twig", "@UVDeskSupportCenter/Knowledgebase/index.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 40)
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 277)
in
vendor/symfony/framework-bundle/Controller/ControllerTrait.php
->
render
(line 235)
if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
@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);
$content = $this->container->get('templating')->render($view, $parameters);
} elseif ($this->container->has('twig')) {
$content = $this->container->get('twig')->render($view, $parameters);
} else {
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".');
}
if (null === $response) {
in
vendor/uvdesk/support-center-bundle/Controller/Website.php
->
render
(line 108)
in
vendor/symfony/http-kernel/HttpKernel.php
->
home
(line 158)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 80)
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 201)
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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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> </p><p>To get started with FortiClient VPN, follow these simple steps:</p><p> </p><p>Step 1: Download and Install FortiClient VPN</p><p> </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> </p><p> </p><p>Step 2: Configure FortiClient VPN</p><p> </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> </p><p>Step 3: Enter Connection Details</p><p> </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> </p><p>Step 4: Connect to the VPN</p><p> </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> </p><p>Step 5: Access Your Company Resources</p><p> </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> </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) |