Exceptions
Exceptions 2
Twig\Error\ RuntimeError
{# WEB-3 §4: Solutions organized around BUYERS, not technologies #}<li class="hb-drop"><a href="{{ url('honeybee_solutions') }}"class="{{ app.request.get('_route') == 'honeybee_solutions' ? 'active' : '' }}">Solutions <i class="fa-solid fa-chevron-down hb-caret"></i></a><ul class="hb-dd-menu"><li><a href="{{ url('honeybee_solution', {'slug': 'solar-epc'}) }}"class="{{ app.request.get('slug') == 'solar-epc' ? 'active' : '' }}">Solar EPC Companies</a></li><li><a href="{{ url('honeybee_solution', {'slug': 'system-integrators'}) }}"class="{{ app.request.get('slug') == 'system-integrators' ? 'active' : '' }}">System Integrators</a></li><li><a href="{{ url('honeybee_solution', {'slug': 'energy-asset-owners'}) }}"class="{{ app.request.get('slug') == 'energy-asset-owners' ? 'active' : '' }}">Energy Asset Owners</a></li>
in
var/cache/dev/twig/aa/aa76007532f857eabaa923f84d61e073d0c84a2eed47655c8c5682a53ee9a2b3.php
->
yield
(line 46)
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@CompanyGroup/pages/tickets/create_ticket.html.twig"));// line 1$context["page_title"] = "New Ticket | HoneyBee";// line 2yield from $this->loadTemplate("@Application/inc/central_header.html.twig", "@CompanyGroup/pages/tickets/create_ticket.html.twig", 2)->unwrap()->yield($context);// line 3yield from $this->loadTemplate("@CompanyGroup/pages/admin/_sidebar.html.twig", "@CompanyGroup/pages/tickets/create_ticket.html.twig", 3)->unwrap()->yield($context);// line 4yield "<style>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 360)
}$level = ob_get_level();ob_start();foreach ($this->doDisplay($context, $blocks) as $data) {if (ob_get_length()) {$data = ob_get_clean().$data;ob_start();}
in
vendor/twig/twig/src/Template.php
->
yield
(line 335)
}public function render(array $context): string{$content = '';foreach ($this->yield($context) as $data) {$content .= $data;}return $content;}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 38)
$this->template = $template;}public function render(array $context = []): string{return $this->template->render($context);}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 306)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{if (!$this->container->has('twig')) {throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');}return $this->container->get('twig')->render($view, $parameters);}/*** Renders a view.*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/*** Renders a view.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{$content = $this->renderView($view, $parameters);if (null === $response) {$response = new Response();}
AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
in
src/CompanyGroupBundle/Controller/TicketController.php
(line 277)
'lastPayloadJson' => $ticket->getLastPayloadJson(),'feedback' => $ticket->getFeedback(),];return $this->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', ['ticket' => $ticket,'formData' => $formData,'editMode' => true,]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
EditTicketAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$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 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);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 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
Debug::enable();$kernel = new AppKernel('dev', true);//$kernel->loadClassCache();$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ InvalidParameterException
in
vendor/symfony/routing/Generator/UrlGenerator.php
(line 194)
if (!$optional || $important || !\array_key_exists($varName, $defaults) || (null !== $mergedParams[$varName] && (string) $mergedParams[$varName] !== (string) $defaults[$varName])) {// check requirement (while ignoring look-around patterns)if (null !== $this->strictRequirements && !preg_match('#^'.preg_replace('/\(\?(?:=|<=|!|<!)((?:[^()\\\\]+|\\\\.|\((?1)\))*)\)/', '', $token[2]).'$#i'.(empty($token[4]) ? '' : 'u'), $mergedParams[$token[3]] ?? '')) {if ($this->strictRequirements) {throw new InvalidParameterException(strtr($message, ['{parameter}' => $varName, '{route}' => $name, '{expected}' => $token[2], '{given}' => $mergedParams[$varName]]));}if ($this->logger) {$this->logger->error($message, ['parameter' => $varName, 'route' => $name, 'expected' => $token[2], 'given' => $mergedParams[$varName]]);}
in
vendor/symfony/routing/Generator/CompiledUrlGenerator.php
->
doGenerate
(line 67)
} elseif (!isset($parameters['_locale'])) {$parameters['_locale'] = $defaults['_locale'];}}return $this->doGenerate($variables, $defaults, $requirements, $tokens, $parameters, $name, $referenceType, $hostTokens, $requiredSchemes);}}
in
vendor/symfony/routing/Router.php
->
generate
(line 235)
/*** {@inheritdoc}*/public function generate(string $name, array $parameters = [], int $referenceType = self::ABSOLUTE_PATH){return $this->getGenerator()->generate($name, $parameters, $referenceType);}/*** {@inheritdoc}*/
in
vendor/symfony/twig-bridge/Extension/RoutingExtension.php
->
generate
(line 53)
return $this->generator->generate($name, $parameters, $relative ? UrlGeneratorInterface::RELATIVE_PATH : UrlGeneratorInterface::ABSOLUTE_PATH);}public function getUrl(string $name, array $parameters = [], bool $schemeRelative = false): string{return $this->generator->generate($name, $parameters, $schemeRelative ? UrlGeneratorInterface::NETWORK_PATH : UrlGeneratorInterface::ABSOLUTE_URL);}/*** Determines at compile time whether the generated URL will be safe and thus* saving the unneeded automatic escaping for performance reasons.
in
var/cache/dev/twig/93/9325cfdf844add482b1c54e1ccadc5cfa93cf143e5fa4514abea2bcfd4700968.php
->
getUrl
(line 1308)
yield (((0 === CoreExtension::compare(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 1056, $this->source); })()), "request", [], "any", false, false, false, 1056), "get", ["_route"], "method", false, false, false, 1056), "honeybee_solutions"))) ? ("active") : (""));yield "\">Solutions <i class=\"fa-solid fa-chevron-down hb-caret\"></i></a><ul class=\"hb-dd-menu\"><li><a href=\"";// line 1058yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("honeybee_solution", ["slug" => "solar-epc"]);yield "\"class=\"";// line 1059yield (((0 === CoreExtension::compare(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 1059, $this->source); })()), "request", [], "any", false, false, false, 1059), "get", ["slug"], "method", false, false, false, 1059), "solar-epc"))) ? ("active") : (""));yield "\">Solar EPC Companies</a></li>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 360)
}$level = ob_get_level();ob_start();foreach ($this->doDisplay($context, $blocks) as $data) {if (ob_get_length()) {$data = ob_get_clean().$data;ob_start();}
in
var/cache/dev/twig/aa/aa76007532f857eabaa923f84d61e073d0c84a2eed47655c8c5682a53ee9a2b3.php
->
yield
(line 46)
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@CompanyGroup/pages/tickets/create_ticket.html.twig"));// line 1$context["page_title"] = "New Ticket | HoneyBee";// line 2yield from $this->loadTemplate("@Application/inc/central_header.html.twig", "@CompanyGroup/pages/tickets/create_ticket.html.twig", 2)->unwrap()->yield($context);// line 3yield from $this->loadTemplate("@CompanyGroup/pages/admin/_sidebar.html.twig", "@CompanyGroup/pages/tickets/create_ticket.html.twig", 3)->unwrap()->yield($context);// line 4yield "<style>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 360)
}$level = ob_get_level();ob_start();foreach ($this->doDisplay($context, $blocks) as $data) {if (ob_get_length()) {$data = ob_get_clean().$data;ob_start();}
in
vendor/twig/twig/src/Template.php
->
yield
(line 335)
}public function render(array $context): string{$content = '';foreach ($this->yield($context) as $data) {$content .= $data;}return $content;}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 38)
$this->template = $template;}public function render(array $context = []): string{return $this->template->render($context);}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 306)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{if (!$this->container->has('twig')) {throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');}return $this->container->get('twig')->render($view, $parameters);}/*** Renders a view.*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/*** Renders a view.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{$content = $this->renderView($view, $parameters);if (null === $response) {$response = new Response();}
AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
in
src/CompanyGroupBundle/Controller/TicketController.php
(line 277)
'lastPayloadJson' => $ticket->getLastPayloadJson(),'feedback' => $ticket->getFeedback(),];return $this->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', ['ticket' => $ticket,'formData' => $formData,'editMode' => true,]);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
EditTicketAction
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$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 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);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 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
Debug::enable();$kernel = new AppKernel('dev', true);//$kernel->loadClassCache();$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 18:12:18 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://www.ourhoneybee.space/_pika/latest?ip=51.89.129.94",
"method": "GET"
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.main" service is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated. {
"exception": {}
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 18:12:18 | php |
User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated. {
"exception": {}
}
|
| DEBUG 18:12:18 | event |
Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController". {
"event": "kernel.controller",
"listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController". {
"event": "kernel.controller",
"listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController". {
"event": "kernel.controller",
"listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController". {
"event": "kernel.controller",
"listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| INFO 18:12:18 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"host": "localhost",
"port": null,
"dbname": "u405565514_honeybee_iot",
"user": "u405565514_honeybee_iot",
"password": "<redacted>",
"charset": "UTF8",
"driverOptions": [],
"defaultTableOptions": []
}
}
|
| DEBUG 18:12:18 | doctrine |
Executing query: SELECT data FROM acc_setting WHERE name = 'cors_extra_origins' ORDER BY id DESC LIMIT 1 {
"sql": "SELECT data FROM acc_setting WHERE name = 'cors_extra_origins' ORDER BY id DESC LIMIT 1"
}
|
| DEBUG 18:12:18 | event |
Notified event "kernel.response" to listener "ApplicationBundle\Listener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "ApplicationBundle\\Listener\\SessionListener::onKernelResponse"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController". {
"event": "kernel.controller",
"listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController". {
"event": "kernel.controller",
"listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.response" to listener "ApplicationBundle\Listener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "ApplicationBundle\\Listener\\SessionListener::onKernelResponse"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController". {
"event": "kernel.controller",
"listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | event |
Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController". {
"event": "kernel.controller",
"listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
|
| DEBUG 18:12:18 | 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:12:18 | 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"
}
|
Stack Traces 2
|
[2/2]
RuntimeError
|
|---|
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Parameter "slug" for route "honeybee_solution" must match "erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv" ("solar-epc" given) to generate a corresponding URL.").
at src/ApplicationBundle/Resources/views/inc/central_header.html.twig:1058
at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'))
(var/cache/dev/twig/aa/aa76007532f857eabaa923f84d61e073d0c84a2eed47655c8c5682a53ee9a2b3.php:46)
at __TwigTemplate_d3c14b32ec9a23d50656de5d8361b57237ef38bbdfdf77b3d0f40772c63c6a4a->doDisplay(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'), array())
(vendor/twig/twig/src/Template.php:360)
at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime'))
(vendor/twig/twig/src/Template.php:335)
at Twig\Template->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/twig/twig/src/TemplateWrapper.php:38)
at Twig\TemplateWrapper->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/twig/twig/src/Environment.php:306)
at Twig\Environment->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(src/CompanyGroupBundle/Controller/TicketController.php:277)
at CompanyGroupBundle\Controller\TicketController->EditTicketAction(object(Request), '59')
(vendor/symfony/http-kernel/HttpKernel.php:163)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(web/app_dev.php:30)
|
|
[1/2]
InvalidParameterException
|
|---|
Symfony\Component\Routing\Exception\InvalidParameterException:
Parameter "slug" for route "honeybee_solution" must match "erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv" ("solar-epc" given) to generate a corresponding URL.
at vendor/symfony/routing/Generator/UrlGenerator.php:194
at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate(array('slug' => 0), array('_controller' => 'ApplicationBundle\\Modules\\HoneybeeWeb\\Controller\\HoneybeeWebPublicController:CentralSolutionPageAction'), array('slug' => 'erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv'), array(array('variable', '/', 'erp-for-solar-epc|erp-for-engineering|erp-for-construction|erp-for-om|erp-for-trading|project-erp-bangladesh|project-erp-singapore|project-erp-germany|honeycore-solar-pv|honeycore-hybrid-energy|honeycore-cold-chain|honeycore-agri-pv', 'slug'), array('text', '/solutions')), array('slug' => 'solar-epc'), 'honeybee_solution', 0, array(), array())
(vendor/symfony/routing/Generator/CompiledUrlGenerator.php:67)
at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate('honeybee_solution', array('slug' => 'solar-epc'), 0)
(vendor/symfony/routing/Router.php:235)
at Symfony\Component\Routing\Router->generate('honeybee_solution', array('slug' => 'solar-epc'), 0)
(vendor/symfony/twig-bridge/Extension/RoutingExtension.php:53)
at Symfony\Bridge\Twig\Extension\RoutingExtension->getUrl('honeybee_solution', array('slug' => 'solar-epc'))
(var/cache/dev/twig/93/9325cfdf844add482b1c54e1ccadc5cfa93cf143e5fa4514abea2bcfd4700968.php:1308)
at __TwigTemplate_f31777615914bf63be65cb0be3bde0be28d475743b52c849cec75c30f96d7643->doDisplay(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee', 'include_html' => 1, '_noindex_routes' => array('user_login', 'sign_up', 'reset_password', 'verify_email', 'verify_otp', 'reset_new_password', 'honeybee_otp_verification', 'hb360_my_estimate', 'hb360_shared_estimate'), 'BUDDYBEE_ADMIN_LEVEL' => 0, 'isConsultant' => 0), array())
(vendor/twig/twig/src/Template.php:360)
at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'))
(var/cache/dev/twig/aa/aa76007532f857eabaa923f84d61e073d0c84a2eed47655c8c5682a53ee9a2b3.php:46)
at __TwigTemplate_d3c14b32ec9a23d50656de5d8361b57237ef38bbdfdf77b3d0f40772c63c6a4a->doDisplay(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime', 'page_title' => 'New Ticket | HoneyBee'), array())
(vendor/twig/twig/src/Template.php:360)
at Twig\Template->yield(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'socket_shared_secret' => 'change_me_to_another_long_random_secret', 'ai_realtime_ws_url' => 'https://ourhoneybee.xyz/ai-realtime'))
(vendor/twig/twig/src/Template.php:335)
at Twig\Template->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/twig/twig/src/TemplateWrapper.php:38)
at Twig\TemplateWrapper->render(array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/twig/twig/src/Environment.php:306)
at Twig\Environment->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@CompanyGroup/pages/tickets/create_ticket.html.twig', array('ticket' => object(EntityTicket), 'formData' => array('title' => null, 'description' => null, 'note' => null, 'ticketType' => null, 'priority' => null, 'source' => null, 'assignedToUserId' => null, 'taggedUserIds' => null, 'companyId' => null, 'appId' => null, 'branchId' => null, 'name' => null, 'email' => null, 'phone' => null, 'preferredContactMethod' => null, 'deadlineDate' => '', 'problemHash' => null, 'serverIdentifier' => null, 'lastPayloadJson' => null, 'feedback' => null), 'editMode' => true))
(src/CompanyGroupBundle/Controller/TicketController.php:277)
at CompanyGroupBundle\Controller\TicketController->EditTicketAction(object(Request), '59')
(vendor/symfony/http-kernel/HttpKernel.php:163)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(web/app_dev.php:30)
|