Exceptions
Exceptions 2
Twig\Error\ RuntimeError
in
templates/pages/search_properties.html.twig
(line 67)
{% include 'search_properties/_toolbar.html.twig' %}
<div ref='cards' class='cards-list' :class='{"cards-list--2-col": !showMap, "pointer-none o-04": paginatedResultsAreLoading}'>
{{ render(controller('App\\Controller\\Website\\OfferController::searchCardsPaginated', {
request: request,
rent: rent,
})) }}
</div>
</div>
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 40)
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 277)
* @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('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
in
src/Controller/Website/OfferController.php
(line 164)
];
$dataToReturn['radiusOptions'] = [0, 5, 10, 15, 20];
if ($request->query->get('json')) {
return new JsonResponse($dataToReturn);
}
return $this->render('pages/search_properties.html.twig', $dataToReturn);
}
/**
* action that returns JSON with all matching locations as user is typing in "location" field
*/
OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false)
in
src/Controller/Website/OfferController.php
(line 50)
public function rentDetail($encodedTitle, OfferRepository $offerRepository, Request $request) {
return $this->detail($encodedTitle, $offerRepository, $request, true);
}
public function buyDetail($encodedTitle, OfferRepository $offerRepository, Request $request) {
return $this->detail($encodedTitle, $offerRepository, $request, false);
}
public function searchCardsPaginated(OfferRepository $offerRepository, Request $request, PaginatorInterface $paginator, $rent = true)
{
$resultsArray = $this->getResults($offerRepository, $request, $rent);
in
vendor/symfony/http-kernel/HttpKernel.php
->
buyDetail
(line 152)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
// When using the HttpCache, you need to call the method in your front controller
// instead of relying on the configuration parameter
// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Knp\Component\Pager\Exception\ PageNumberInvalidException
in
vendor/knplabs/knp-components/src/Knp/Component/Pager/Exception/PageNumberInvalidException.php
(line 11)
final class PageNumberInvalidException extends OutOfRangeException
{
public static function create(int $page): self
{
return new self(
sprintf('Invalid page number. Page: %d: $page must be positive non-zero integer', $page)
);
}
}
in
vendor/knplabs/knp-components/src/Knp/Component/Pager/Paginator.php
::
create
(line 59)
}
public function paginate($target, int $page = 1, int $limit = null, array $options = []): PaginationInterface
{
if ($page <= 0) {
throw PageNumberInvalidException::create($page);
}
$limit = $limit ?? $this->defaultOptions[self::DEFAULT_LIMIT];
if ($limit <= 0) {
throw PageLimitInvalidException::create($limit);
in
var/cache/website/dev/ContainerWHdc8sl/PaginatorInterface_82dac15.php
->
paginate
(line 30)
public function paginate($target, int $page = 1, ?int $limit = null, array $options = []) : \Knp\Component\Pager\Pagination\PaginationInterface
{
$this->initializer3eb8d && ($this->initializer3eb8d->__invoke($valueHolderbf8ca, $this, 'paginate', array('target' => $target, 'page' => $page, 'limit' => $limit, 'options' => $options), $this->initializer3eb8d) || 1) && $this->valueHolderbf8ca = $valueHolderbf8ca;
if ($this->valueHolderbf8ca === $returnValue = $this->valueHolderbf8ca->paginate($target, $page, $limit, $options)) {
return $this;
}
return $returnValue;
}
PaginatorInterface_82dac15->paginate(array(array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => null, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'tags' => array('Terrain')), array('id' => 135, 'status' => 'A_VENDRE', 'ref' => '158784', 'title' => '2 locaux commerciaux entièrement loués à vendre', 'description' => '', 'city' => 'Etagnières', 'surface' => '100.0', 'address' => '', 'rentAddress' => 'Vaud, Etagnières', 'buyAddress' => 'Vaud, Etagnières', 'price' => 790000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.6007366, 'lng' => 6.6086661), 'isForRent' => null, 'type' => 'Commercial', 'iconOnMap' => 'office', 'url' => '2-locaux-commerciaux-enti-rement-lou-s-vendre-135', 'images' => array('property-images/c81a854b6e02a2012a8a88f72ff03daf780521cf5d9eaaf25698f1ca9b119640-680f6dc6bdc9d.jpeg', 'property-images/2a7ddd31a3c32ac368c08743968c0d09b290b00c0ecc8501064472348451683c-680f6dc6dbfc3.jpg'), 'tags' => array('Commercial', '~100.0m<sup class=\'lh-0\'>2</sup>')), array('id' => 126, 'status' => 'A_VENDRE', 'ref' => '162423', 'title' => 'Appartement lumineux avec balcon, actuellement loué, dans un quartier calme', 'description' => 'Chemin des Foulis 2', 'city' => 'Nyon', 'surface' => '100.0', 'address' => 'Chemin des Foulis 2', 'rentAddress' => 'Vaud, Nyon', 'buyAddress' => 'Vaud, Nyon', 'price' => 870000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.3805092, 'lng' => 6.2298735), 'isForRent' => null, 'type' => 'Appartement', 'iconOnMap' => 'office', 'url' => '-ppartement-lumineux-avec-balcon-actuellement-lou-dans-un-quartier-calme-126', 'images' => array('property-images/c8d663f8db944c04e7f036ca2f386d2aa9f42f414093af179719814aeb7a2830-687f9965bad8b.jpeg', 'property-images/c9cf707f10571f2e8c4eec7dd9a72a441607b936e1c4b7c367493db0f4563de9-687f9965d5a69.jpeg', 'property-images/a6cf009ed809f0a4f032a0c504586157f8680bfcddd83be2d8e60489ee06d2f2-687f9965eef58.jpeg', 'property-images/d53031a9071d689dce27d34f294db8e17462216d45fb033c4981d65f56e2220b-687f9966117d5.jpeg', 'property-images/985162b5f63ceff7dc158e03779fb913068905d030f9a5449cc40e9bb21d3c0d-687f99662a152.jpeg', 'property-images/8b6470c7fa3a6dd965ab91a5d2fd2358e35180b744ce74c5d027673144bd2b1b-687f996645fdd.jpg', 'property-images/65ad682b078653068a26986895d8dfd72c923eea36028a099eb94f184b0dac1d-687f99665f0e7.jpeg'), 'tags' => array('Appartement', '~100.0m<sup class=\'lh-0\'>2</sup>'))), 0, 8, array('defaultSortFieldName' => 'price', 'defaultSortDirection' => 'asc'))
in
src/Controller/Website/OfferController.php
(line 65)
$resultsArray,
$request->query->getInt('page', 1),
8,
[
'defaultSortFieldName' => 'price',
'defaultSortDirection' => $request->query->get('direction') ?: 'desc',
]
);
return $this->render('search_properties/_cards.html.twig', [
'pagination' => $pagination,
in
vendor/symfony/http-kernel/HttpKernel.php
->
searchCardsPaginated
(line 152)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
}
try {
return $kernel->handle($request, $type, $catch);
} finally {
// restore global state
Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
}
}
in
vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php
::
handle
(line 80)
$subRequest->attributes->add($reference->attributes);
}
$level = ob_get_level();
try {
return SubRequestHandler::handle($this->kernel, $subRequest, HttpKernelInterface::SUB_REQUEST, false);
} catch (\Exception $e) {
// we dispatch the exception event to trigger the logging
// the response that comes back is ignored
if (isset($options['ignore_errors']) && $options['ignore_errors'] && $this->dispatcher) {
$event = new ExceptionEvent($this->kernel, $request, HttpKernelInterface::SUB_REQUEST, $e);
in
vendor/symfony/http-kernel/Fragment/FragmentHandler.php
->
render
(line 85)
if (!$request = $this->requestStack->getCurrentRequest()) {
throw new \LogicException('Rendering a fragment can only be done when handling a Request.');
}
return $this->deliver($this->renderers[$renderer]->render($uri, $request, $options));
}
/**
* Delivers the Response as a string.
*
in
vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php
->
render
(line 49)
if (!isset($this->initialized[$renderer]) && $this->container->has($renderer)) {
$this->addRenderer($this->container->get($renderer));
$this->initialized[$renderer] = true;
}
return parent::render($uri, $renderer, $options);
}
}
in
vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php
->
render
(line 44)
public function renderFragment(string|ControllerReference $uri, array $options = []): string
{
$strategy = $options['strategy'] ?? 'inline';
unset($options['strategy']);
return $this->handler->render($uri, $strategy, $options);
}
/**
* Renders a fragment.
*
in
var/cache/website/dev/twig/ea/eae02df52effad762c6c641ad276cd2dbd53974eb527dfc5f93caaa6c6edef92.php
->
renderFragment
(line 137)
echo "
<div ref='cards' class='cards-list' :class='{\"cards-list--2-col\": !showMap, \"pointer-none o-04\": paginatedResultsAreLoading}'>
";
// line 66
echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\Website\\OfferController::searchCardsPaginated", ["request" => // line 67
($context["request"] ?? null), "rent" => // line 68
($context["rent"] ?? null)]));
// line 69
echo "
</div>
</div>
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 40)
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 277)
* @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('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
in
src/Controller/Website/OfferController.php
(line 164)
];
$dataToReturn['radiusOptions'] = [0, 5, 10, 15, 20];
if ($request->query->get('json')) {
return new JsonResponse($dataToReturn);
}
return $this->render('pages/search_properties.html.twig', $dataToReturn);
}
/**
* action that returns JSON with all matching locations as user is typing in "location" field
*/
OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false)
in
src/Controller/Website/OfferController.php
(line 50)
public function rentDetail($encodedTitle, OfferRepository $offerRepository, Request $request) {
return $this->detail($encodedTitle, $offerRepository, $request, true);
}
public function buyDetail($encodedTitle, OfferRepository $offerRepository, Request $request) {
return $this->detail($encodedTitle, $offerRepository, $request, false);
}
public function searchCardsPaginated(OfferRepository $offerRepository, Request $request, PaginatorInterface $paginator, $rent = true)
{
$resultsArray = $this->getResults($offerRepository, $request, $rent);
in
vendor/symfony/http-kernel/HttpKernel.php
->
buyDetail
(line 152)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
// When using the HttpCache, you need to call the method in your front controller
// instead of relying on the configuration parameter
// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 12:14:17 | doctrine |
Connecting with parameters {params} { "params": { "url": "<redacted>", "driver": "pdo_mysql", "host": "rm9b6.myd.infomaniak.com", "port": 3306, "user": "rm9b6_bn_invest", "password": "<redacted>", "driverOptions": { "1002": "SET SESSION sql_mode=(SELECT REPLACE(@@sql_mode, 'ONLY_FULL_GROUP_BY', ''))" }, "defaultTableOptions": { "collation": "utf8mb4_unicode_ci" }, "dbname": "rm9b6_bn_invest", "charset": "utf8mb4" } } |
INFO 12:14:17 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: Since symfony/security-bundle 5.3: The "sulu_security.encoder_factory" service is deprecated, use "security.password_hasher_factory" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. { "exception": {} } |
INFO 12:14:17 | deprecation |
User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. { "exception": {} } |
INFO 12:14:17 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://bn-invest-com.ewm.dev/_profiler/latest?panel=exception", "method": "GET" } |
INFO 12:14:17 | deprecation |
User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead. { "exception": {} } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 12:14:17 | 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 12:14:17 | deprecation |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode". { "event": "kernel.response", "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader" } |
DEBUG 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup". { "event": "kernel.response", "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 12:14:17 | 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 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 12:14:17 | 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 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 12:14:17 | 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 12:14:17 | deprecation |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode". { "event": "kernel.response", "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader" } |
DEBUG 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse". { "event": "kernel.response", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup". { "event": "kernel.response", "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 12:14:17 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 12:14:17 | 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 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 12:14:17 | 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 12:14:17 | 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 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest". { "event": "kernel.request", "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 12:14:17 | event |
Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController". { "event": "kernel.controller", "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController" } |
DEBUG 12:14:17 | 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 ("Invalid page number. Page: 0: $page must be positive non-zero integer"). at templates/pages/search_properties.html.twig:67 at Twig\Template->displayWithErrorHandling(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20), 'app' => object(AppVariable), 'googleCaptchaKey' => '6LehT9UUAAAAACFDGU16Afs9RKhWJ2ySThg6NfQ9', 'googleApisKey' => 'AIzaSyCQKLfv1JVr6mxbSALl2jlu3bbpLVd4Wo4'), array()) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)), array()) (vendor/twig/twig/src/TemplateWrapper.php:40) at Twig\TemplateWrapper->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/twig/twig/src/Environment.php:277) at Twig\Environment->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (src/Controller/Website/OfferController.php:164) at App\Controller\Website\OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false) (src/Controller/Website/OfferController.php:50) at App\Controller\Website\OfferController->buyDetail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:152) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) 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)) (public/index.php:66) |
[1/2]
PageNumberInvalidException
|
---|
Knp\Component\Pager\Exception\PageNumberInvalidException: Invalid page number. Page: 0: $page must be positive non-zero integer at vendor/knplabs/knp-components/src/Knp/Component/Pager/Exception/PageNumberInvalidException.php:11 at Knp\Component\Pager\Exception\PageNumberInvalidException::create(0) (vendor/knplabs/knp-components/src/Knp/Component/Pager/Paginator.php:59) at Knp\Component\Pager\Paginator->paginate(array(array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => null, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'tags' => array('Terrain')), array('id' => 135, 'status' => 'A_VENDRE', 'ref' => '158784', 'title' => '2 locaux commerciaux entièrement loués à vendre', 'description' => '', 'city' => 'Etagnières', 'surface' => '100.0', 'address' => '', 'rentAddress' => 'Vaud, Etagnières', 'buyAddress' => 'Vaud, Etagnières', 'price' => 790000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.6007366, 'lng' => 6.6086661), 'isForRent' => null, 'type' => 'Commercial', 'iconOnMap' => 'office', 'url' => '2-locaux-commerciaux-enti-rement-lou-s-vendre-135', 'images' => array('property-images/c81a854b6e02a2012a8a88f72ff03daf780521cf5d9eaaf25698f1ca9b119640-680f6dc6bdc9d.jpeg', 'property-images/2a7ddd31a3c32ac368c08743968c0d09b290b00c0ecc8501064472348451683c-680f6dc6dbfc3.jpg'), 'tags' => array('Commercial', '~100.0m<sup class=\'lh-0\'>2</sup>')), array('id' => 126, 'status' => 'A_VENDRE', 'ref' => '162423', 'title' => 'Appartement lumineux avec balcon, actuellement loué, dans un quartier calme', 'description' => 'Chemin des Foulis 2', 'city' => 'Nyon', 'surface' => '100.0', 'address' => 'Chemin des Foulis 2', 'rentAddress' => 'Vaud, Nyon', 'buyAddress' => 'Vaud, Nyon', 'price' => 870000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.3805092, 'lng' => 6.2298735), 'isForRent' => null, 'type' => 'Appartement', 'iconOnMap' => 'office', 'url' => '-ppartement-lumineux-avec-balcon-actuellement-lou-dans-un-quartier-calme-126', 'images' => array('property-images/c8d663f8db944c04e7f036ca2f386d2aa9f42f414093af179719814aeb7a2830-687f9965bad8b.jpeg', 'property-images/c9cf707f10571f2e8c4eec7dd9a72a441607b936e1c4b7c367493db0f4563de9-687f9965d5a69.jpeg', 'property-images/a6cf009ed809f0a4f032a0c504586157f8680bfcddd83be2d8e60489ee06d2f2-687f9965eef58.jpeg', 'property-images/d53031a9071d689dce27d34f294db8e17462216d45fb033c4981d65f56e2220b-687f9966117d5.jpeg', 'property-images/985162b5f63ceff7dc158e03779fb913068905d030f9a5449cc40e9bb21d3c0d-687f99662a152.jpeg', 'property-images/8b6470c7fa3a6dd965ab91a5d2fd2358e35180b744ce74c5d027673144bd2b1b-687f996645fdd.jpg', 'property-images/65ad682b078653068a26986895d8dfd72c923eea36028a099eb94f184b0dac1d-687f99665f0e7.jpeg'), 'tags' => array('Appartement', '~100.0m<sup class=\'lh-0\'>2</sup>'))), 0, 8, array('defaultSortFieldName' => 'price', 'defaultSortDirection' => 'asc')) (var/cache/website/dev/ContainerWHdc8sl/PaginatorInterface_82dac15.php:30) at ContainerWHdc8sl\PaginatorInterface_82dac15->paginate(array(array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => null, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'tags' => array('Terrain')), array('id' => 135, 'status' => 'A_VENDRE', 'ref' => '158784', 'title' => '2 locaux commerciaux entièrement loués à vendre', 'description' => '', 'city' => 'Etagnières', 'surface' => '100.0', 'address' => '', 'rentAddress' => 'Vaud, Etagnières', 'buyAddress' => 'Vaud, Etagnières', 'price' => 790000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.6007366, 'lng' => 6.6086661), 'isForRent' => null, 'type' => 'Commercial', 'iconOnMap' => 'office', 'url' => '2-locaux-commerciaux-enti-rement-lou-s-vendre-135', 'images' => array('property-images/c81a854b6e02a2012a8a88f72ff03daf780521cf5d9eaaf25698f1ca9b119640-680f6dc6bdc9d.jpeg', 'property-images/2a7ddd31a3c32ac368c08743968c0d09b290b00c0ecc8501064472348451683c-680f6dc6dbfc3.jpg'), 'tags' => array('Commercial', '~100.0m<sup class=\'lh-0\'>2</sup>')), array('id' => 126, 'status' => 'A_VENDRE', 'ref' => '162423', 'title' => 'Appartement lumineux avec balcon, actuellement loué, dans un quartier calme', 'description' => 'Chemin des Foulis 2', 'city' => 'Nyon', 'surface' => '100.0', 'address' => 'Chemin des Foulis 2', 'rentAddress' => 'Vaud, Nyon', 'buyAddress' => 'Vaud, Nyon', 'price' => 870000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.3805092, 'lng' => 6.2298735), 'isForRent' => null, 'type' => 'Appartement', 'iconOnMap' => 'office', 'url' => '-ppartement-lumineux-avec-balcon-actuellement-lou-dans-un-quartier-calme-126', 'images' => array('property-images/c8d663f8db944c04e7f036ca2f386d2aa9f42f414093af179719814aeb7a2830-687f9965bad8b.jpeg', 'property-images/c9cf707f10571f2e8c4eec7dd9a72a441607b936e1c4b7c367493db0f4563de9-687f9965d5a69.jpeg', 'property-images/a6cf009ed809f0a4f032a0c504586157f8680bfcddd83be2d8e60489ee06d2f2-687f9965eef58.jpeg', 'property-images/d53031a9071d689dce27d34f294db8e17462216d45fb033c4981d65f56e2220b-687f9966117d5.jpeg', 'property-images/985162b5f63ceff7dc158e03779fb913068905d030f9a5449cc40e9bb21d3c0d-687f99662a152.jpeg', 'property-images/8b6470c7fa3a6dd965ab91a5d2fd2358e35180b744ce74c5d027673144bd2b1b-687f996645fdd.jpg', 'property-images/65ad682b078653068a26986895d8dfd72c923eea36028a099eb94f184b0dac1d-687f99665f0e7.jpeg'), 'tags' => array('Appartement', '~100.0m<sup class=\'lh-0\'>2</sup>'))), 0, 8, array('defaultSortFieldName' => 'price', 'defaultSortDirection' => 'asc')) (src/Controller/Website/OfferController.php:65) at App\Controller\Website\OfferController->searchCardsPaginated(object(OfferRepository), object(Request), object(PaginatorInterface_82dac15), null) (vendor/symfony/http-kernel/HttpKernel.php:152) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false) (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86) at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 2, false) (vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php:80) at Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render('/_fragment?_path=_format%3Dhtml%26_locale%3Dfr%26_controller%3DApp%255CController%255CWebsite%255COfferController%253A%253AsearchCardsPaginated', object(Request), array('ignore_errors' => false)) (vendor/symfony/http-kernel/Fragment/FragmentHandler.php:85) at Symfony\Component\HttpKernel\Fragment\FragmentHandler->render(object(ControllerReference), 'inline', array('ignore_errors' => false)) (vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php:49) at Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render(object(ControllerReference), 'inline', array()) (vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php:44) at Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment(object(ControllerReference)) (var/cache/website/dev/twig/ea/eae02df52effad762c6c641ad276cd2dbd53974eb527dfc5f93caaa6c6edef92.php:137) at __TwigTemplate_ff7053ff8044f35c80b52ffd323f9c5d3c86b9818573fbcb583eb51cb26c0d62->doDisplay(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20), 'app' => object(AppVariable), 'googleCaptchaKey' => '6LehT9UUAAAAACFDGU16Afs9RKhWJ2ySThg6NfQ9', 'googleApisKey' => 'AIzaSyCQKLfv1JVr6mxbSALl2jlu3bbpLVd4Wo4'), array()) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20), 'app' => object(AppVariable), 'googleCaptchaKey' => '6LehT9UUAAAAACFDGU16Afs9RKhWJ2ySThg6NfQ9', 'googleApisKey' => 'AIzaSyCQKLfv1JVr6mxbSALl2jlu3bbpLVd4Wo4'), array()) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)), array()) (vendor/twig/twig/src/TemplateWrapper.php:40) at Twig\TemplateWrapper->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/twig/twig/src/Environment.php:277) at Twig\Environment->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain : Avec permis en force.Projet : Construction d\'un immeuble d\'environ 32\'000 m³.Affectations : Bureaux, laboratoires etc.Emplacement : Proche de l\'autoroute.Restriction : Pas d\'activités lourdes en trafic.Prix : Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) (src/Controller/Website/OfferController.php:164) at App\Controller\Website\OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false) (src/Controller/Website/OfferController.php:50) at App\Controller\Website\OfferController->buyDetail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:152) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) 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)) (public/index.php:66) |