Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Your proxy directory "/app/var/cache/dev/doctrine/orm/Proxies" must be writable

Exception

Doctrine\Common\Proxy\Exception\ UnexpectedValueException

  1.      *
  2.      * @return self
  3.      */
  4.     public static function proxyDirectoryNotWritable($proxyDirectory)
  5.     {
  6.         return new self(sprintf('Your proxy directory "%s" must be writable'$proxyDirectory));
  7.     }
  8.     /**
  9.      * @param string          $className
  10.      * @param string          $methodName
  1.         if ( ! is_dir($parentDirectory) && (false === @mkdir($parentDirectory0775true))) {
  2.             throw UnexpectedValueException::proxyDirectoryNotWritable($this->proxyDirectory);
  3.         }
  4.         if ( ! is_writable($parentDirectory)) {
  5.             throw UnexpectedValueException::proxyDirectoryNotWritable($this->proxyDirectory);
  6.         }
  7.         $tmpFileName $fileName '.' uniqid(''true);
  8.         file_put_contents($tmpFileName$proxyCode);
  1.                     }
  2.                     require $fileName;
  3.                     break;
  4.                 case self::AUTOGENERATE_ALWAYS:
  5.                     $this->proxyGenerator->generateProxyClass($classMetadata$fileName);
  6.                     require $fileName;
  7.                     break;
  8.                 case self::AUTOGENERATE_EVAL:
  9.                     $this->proxyGenerator->generateProxyClass($classMetadatafalse);
  1.      */
  2.     public function getProxy($className, array $identifier)
  3.     {
  4.         $definition = isset($this->definitions[$className])
  5.             ? $this->definitions[$className]
  6.             : $this->getProxyDefinition($className);
  7.         $fqcn       $definition->proxyClassName;
  8.         $proxy      = new $fqcn($definition->initializer$definition->cloner);
  9.         foreach ($definition->identifierFields as $idField) {
  10.             if ( ! isset($identifier[$idField])) {
  1.                         default:
  2.                             switch (true) {
  3.                                 // We are negating the condition here. Other cases will assume it is valid!
  4.                                 case ($hints['fetchMode'][$class->name][$field] !== ClassMetadata::FETCH_EAGER):
  5.                                     $newValue $this->em->getProxyFactory()->getProxy($assoc['targetEntity'], $associatedId);
  6.                                     break;
  7.                                 // Deferred eager load only works for single identifier classes
  8.                                 case (isset($hints[self::HINT_DEFEREAGERLOAD]) && ! $targetClass->isIdentifierComposite):
  9.                                     // TODO: Is there a faster approach?
  1.             $this->registerManaged($this->_metadataCache[$className], $this->_hints[Query::HINT_REFRESH_ENTITY], $data);
  2.         }
  3.         $this->_hints['fetchAlias'] = $dqlAlias;
  4.         return $this->_uow->createEntity($className$data$this->_hints);
  5.     }
  6.     /**
  7.      * @param string $className
  8.      * @param array  $data
  1.                     continue;
  2.                 }
  3.                 // check for existing result from the iterations before
  4.                 if ( ! isset($this->identifierMap[$dqlAlias][$id[$dqlAlias]])) {
  5.                     $element $this->getEntity($data$dqlAlias);
  6.                     if ($this->_rsm->isMixed) {
  7.                         $element = [$entityKey => $element];
  8.                     }
  1.     protected function hydrateAllData()
  2.     {
  3.         $result = [];
  4.         while ($row $this->_stmt->fetch(PDO::FETCH_ASSOC)) {
  5.             $this->hydrateRowData($row$result);
  6.         }
  7.         // Take snapshots from all newly initialized collections
  8.         foreach ($this->initializedCollections as $coll) {
  9.             $coll->takeSnapshot();
  1.         $this->_em->getEventManager()->addEventListener([Events::onClear], $this);
  2.         $this->prepare();
  3.         $result $this->hydrateAllData();
  4.         $this->cleanup();
  5.         return $result;
  6.     }
  1.             return $stmt;
  2.         }
  3.         $rsm  $this->getResultSetMapping();
  4.         $data $this->_em->newHydrator($this->_hydrationMode)->hydrateAll($stmt$rsm$this->_hints);
  5.         $setCacheEntry($data);
  6.         return $data;
  7.     }
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php->executeIgnoreQueryCache (line 923)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function getResult($hydrationMode self::HYDRATE_OBJECT)
  5.     {
  6.         return $this->execute(null$hydrationMode);
  7.     }
  8.     /**
  9.      * Gets the array of results for the query.
  10.      *
  1.         ;
  2.         /** @var Page[] $results */
  3.         $results $qb->getQuery()
  4.             ->useResultCache($this->cacheEnabled$this->cacheTtl)
  5.             ->getResult()
  6.         ;
  7.         if (=== count($results)) {
  8.             return $results;
  9.         }
  1.      */
  2.     protected function getPages(array $slugsArray = [])
  3.     {
  4.         /** @var Page[] $pages */
  5.         $pages $this->get('orbitale_cms.page_repository')
  6.             ->findFrontPages($slugsArray$this->request->getHost(), $this->request->getLocale())
  7.         ;
  8.         if (!count($pages) || (count($slugsArray) && count($pages) !== count($slugsArray))) {
  9.             throw $this->createNotFoundException(count($slugsArray)
  10.                 ? 'Page not found'
  1.         $this->request $request;
  2.         $this->request->setLocale($_locale ?: $this->request->getLocale());
  3.         $slugsArray preg_split('~/~'$slugs, -1PREG_SPLIT_NO_EMPTY);
  4.         $pages $this->getPages($slugsArray);
  5.         $currentPage $this->getCurrentPage($pages$slugsArray);
  6.         // If we have slugs and the current page is homepage,
  7.         //  we redirect to homepage for "better" url and SEO management.
in vendor/symfony/http-kernel/HttpKernel.php->indexAction (line 158)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 12:59:44 php User Deprecated: The Symfony\Bundle\TwigBundle\Loader\FilesystemLoader class is deprecated since version 4.3 and will be removed in 5.0; use Twig notation for templates instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Sonata\CacheBundle\Invalidation\SimpleCacheInvalidation class is deprecated since version 2.4 and will be removed in 3.0. Use Sonata\Cache\Invalidation\SimpleCacheInvalidation instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Sonata\Doctrine\Model\PageableManagerInterface class is deprecated since 1.3 in favor of Sonata\DatagridBundle\Pager\PageableInterface, and will be removed in 2.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Sonata\FormatterBundle\Formatter\FormatterInterface interface is deprecated since sonata-project/formatter-bundle 4.x, to be removed in 5.0. Use Formatter or ExtendableFormatter instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "templating.locator" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "templating.name_parser" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\TemplateNameParser class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "sonata.deprecated_text.twig.extension" service is deprecated since sonata-project/admin-bundle 3.70. You should stop using it, as it will be removed in 4.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "sonata.core.twig.extension.text" service is deprecated since sonata-project/core-bundle 3.19 and will be removed in 4.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "sonata.core.twig.status_extension" service is deprecated since sonata-project/core-bundle 3.19 and will be removed in 4.0. Use "sonata.twig.status_extension" instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "sonata.core.model.adapter.chain" service is deprecated in favor of service "sonata.doctrine.model.adapter.chain" since 3.12.0 and will be removed in 4.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Sonata\CoreBundle\Model\Adapter\AdapterChain class is deprecated since version 3.12.0 and will be removed in 4.0. Use Sonata\Doctrine\Adapter\AdapterChain instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "sonata.core.model.adapter.doctrine_orm" service is deprecated in favor of service "sonata.doctrine.adapter.doctrine_orm" since 3.12.0 and will be removed in 4.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The Sonata\CoreBundle\Model\Adapter\DoctrineORMAdapter class is deprecated since version 3.12.0 and will be removed in 4.0. Use Sonata\Doctrine\Adapter\ORM\DoctrineORMAdapter instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: Passing Sonata\Cache\CacheManagerInterface as argument 6 to Sonata\BlockBundle\Templating\Helper\BlockHelper::__construct() is deprecated since sonata-project/block-bundle 3.18 and will throw a \TypeError as of 4.0. You must pass an instance of Psr\Cache\CacheItemPoolInterface instead.
{
    "exception": {}
}
INFO 12:59:44 request Matched route "orbitale_cms_page".
{
    "route": "orbitale_cms_page",
    "route_parameters": {
        "_route": "orbitale_cms_page",
        "_controller": "Orbitale\\Bundle\\CmsBundle\\Controller\\PageController::indexAction",
        "slugs": "mamias"
    },
    "request_uri": "http://dev.mamias.org/page/mamias",
    "method": "GET"
}
INFO 12:59:44 security Populated the TokenStorage with an anonymous Token.
DEBUG 12:59:44 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 12:59:44 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 12:59:44 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 12:59:44 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 12:59:44 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 12:59:44 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:59:44 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:59:44 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 12:59:44 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:59:44 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:59:44 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 12:59:44 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:59:44 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:59:44 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:59:44 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:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Orbitale\Bundle\CmsBundle\EventListener\LayoutsListener::setRequestLayout".
{
    "event": "kernel.request",
    "listener": "Orbitale\\Bundle\\CmsBundle\\EventListener\\LayoutsListener::setRequestLayout"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Thormeier\BreadcrumbBundle\Provider\BreadcrumbProvider::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Thormeier\\BreadcrumbBundle\\Provider\\BreadcrumbProvider::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\BlameListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\BlameListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 12:59:44 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:59:44 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:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 12:59:44 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 12:59:44 php User Deprecated: The Sonata\Doctrine\Types\JsonType class is deprecated since 1.2 in favor of Doctrine\DBAL\Types\JsonType, and will be removed in 2.0.
{
    "exception": {}
}
DEBUG 12:59:44 doctrine SELECT o0_.id AS id_0, o0_.title AS title_1, o0_.slug AS slug_2, o0_.page_content AS page_content_3, o0_.meta_description AS meta_description_4, o0_.meta_title AS meta_title_5, o0_.meta_keywords AS meta_keywords_6, o0_.css AS css_7, o0_.js AS js_8, o0_.created_at AS created_at_9, o0_.enabled AS enabled_10, o0_.homepage AS homepage_11, o0_.host AS host_12, o0_.locale AS locale_13, o0_.category_id AS category_id_14, o0_.parent_id AS parent_id_15 FROM orbitale_cms_pages o0_ LEFT JOIN orbitale_cms_categories o1_ ON o0_.category_id = o1_.id WHERE o0_.enabled = ? AND (o0_.category_id IS NULL OR o1_.enabled = ?) AND o0_.slug = ? AND (o0_.host IS NULL OR o0_.host = ?) AND (o0_.locale IS NULL OR o0_.locale = ?) ORDER BY o0_.host ASC, o0_.locale ASC LIMIT 1
[
    true,
    true,
    "mamias",
    "dev.mamias.org",
    "en"
]
INFO 12:59:44 php User Deprecated: The "twig.exception_listener" service is deprecated since Symfony 4.4.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "Symfony\Component\HttpKernel\EventListener\ExceptionListener" class is deprecated since Symfony 4.4, use "ErrorListener" instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
CRITICAL 12:59:44 request Uncaught PHP Exception Doctrine\Common\Proxy\Exception\UnexpectedValueException: "Your proxy directory "/app/var/cache/dev/doctrine/orm/Proxies" must be writable" at /app/vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/UnexpectedValueException.php line 22
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
DEBUG 12:59:44 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:59:44 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:59:44 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 12:59:44 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:59:44 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:59:44 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 12:59:44 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:59:44 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:59:44 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:59:44 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:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Orbitale\Bundle\CmsBundle\EventListener\LayoutsListener::setRequestLayout".
{
    "event": "kernel.request",
    "listener": "Orbitale\\Bundle\\CmsBundle\\EventListener\\LayoutsListener::setRequestLayout"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Thormeier\BreadcrumbBundle\Provider\BreadcrumbProvider::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Thormeier\\BreadcrumbBundle\\Provider\\BreadcrumbProvider::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\BlameListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\BlameListener::onKernelRequest"
}
DEBUG 12:59:44 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
INFO 12:59:44 php User Deprecated: The "twig.controller.exception" service is deprecated since Symfony 4.4.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The "Symfony\Bundle\TwigBundle\Controller\ExceptionController" class is deprecated since Symfony 4.4, use "Symfony\Component\HttpKernel\Controller\ErrorController" instead.
{
    "exception": {}
}
DEBUG 12:59:44 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:59:44 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:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 12:59:44 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 12:59:44 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 12:59:44 php User Deprecated: The Twig\Environment::getBaseTemplateClass is deprecated since Twig 2.7.0.
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The template "@Twig/layout.html.twig" is deprecated since Symfony 4.4, will be removed in 5.0. ("@Twig/layout.html.twig" at line 1).
{
    "exception": {}
}
INFO 12:59:44 php User Deprecated: The template "@Twig/exception.css.twig" is deprecated since Symfony 4.4, will be removed in 5.0. ("@Twig/exception.css.twig" at line 1).
{
    "exception": {}
}

Stack Trace

UnexpectedValueException

Doctrine\Common\Proxy\Exception\UnexpectedValueException:
Your proxy directory "/app/var/cache/dev/doctrine/orm/Proxies" must be writable

  at vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/UnexpectedValueException.php:22
  at Doctrine\Common\Proxy\Exception\UnexpectedValueException::proxyDirectoryNotWritable('/app/var/cache/dev/doctrine/orm/Proxies')
     (vendor/doctrine/common/lib/Doctrine/Common/Proxy/ProxyGenerator.php:291)
  at Doctrine\Common\Proxy\ProxyGenerator->generateProxyClass(object(ClassMetadata), '/app/var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityCategory.php')
     (vendor/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php:215)
  at Doctrine\Common\Proxy\AbstractProxyFactory->getProxyDefinition('App\\Entity\\Category')
     (vendor/doctrine/common/lib/Doctrine/Common/Proxy/AbstractProxyFactory.php:114)
  at Doctrine\Common\Proxy\AbstractProxyFactory->getProxy('App\\Entity\\Category', array('id' => 5))
     (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:2804)
  at Doctrine\ORM\UnitOfWork->createEntity('App\\Entity\\Page', array('id' => 1, 'title' => 'MAMIAS', 'slug' => 'mamias', 'content' => '<div class="row"><div class="col-lg-7"><h2>MArine Mediterranean Invasive Alien Species Database</h2><h3>Since 2012!</h3><p>The Database includes Alien species, cryptogenic ones. It includes also species that have been occasionally reported as alien but were subsequently excluded from lists, along with the reasoning of their exclusion.</p><p>As provided for by the Action Plan concerning species introduction and invasive species in the Mediterranean Sea, a first version of a regional system for the collection, analysis and dissemination of information on alien and invasive species was developed. The online database on marine invasive species in the Mediterranean Sea (MAMIAS; www.mamias.org) gives information on invasive non-indigenous species in the Mediterranean (list of alien species, list of marine invasive species, list of vectors, etc...) and allows the use of different filters to find required data and retrieve statistics at regional and national level about aliens and invasive species.<br /> </p><p>The Catalogue is the core of the MAMIAS. It contains the information needed to efficiently retrieve information on NIS distribution in the Mediterranean. The Catalogue currently includes information on about 1400 alien taxa. The MAMIAS Catalogue was initially based on an inventory of all species reported to be alien in the Mediterranean through published papers and grey litterature.</p><p>Since the initial compilation, the Catalogue was updated in 2017, revised and validated through a process which includes several steps to achieve high quality standards.In the Catalogue, each valid name is connected it with additional information for each species (e.g. taxonomy,sysnonyms, etc...). A taxonomic tree (kingdom, phylum/division, class, order, and family) is associated with every species in the Catalogue.<br /> </p><p>Information on pathways of introduction is included if known. MAMIAS will gradually align its pathways categorization to the one proposed by the Convention of the Biological Diversity (CBD 2014. Pathways of introduction of invasive species, their prioritization and management. UNEP/CBD/SBSTTA/18/9/Add.1, Montreal, Canada, 23-28 June 2014, 18 pp.), aiming at achieving synchronization and harmonizing of information on Alien Species pathways.</p><p>Species that are recognized to have a high impact present (species lists of DAISIE, GISD, NOBANIS, CABI, MedPAN and SEBI-2010) are highlighted. The occurrences of Alien Species in the Mediterranean results from spatial data coming from screening the scientific literature and retrieving geo-referenced data, the Contracting Parties Surveillance systems established to comply with the Decision on IMAP and from a network of Scientists working in the Mediterranean, on the basis of the species contained in the MAMIAS Catalogue. Data collected are then shown in occurrences maps at for each species of the catalogue when existing</p><p>For citing MAMIAS please use: SPA/RAC-UNEP/MAP- Marine Mediterranean Invasive Alien Species Database (MAMIAS) http://www.mamias.org</p></div><div class="col-lg-5"><img alt="MAMIAS 3.0" class="img-fluid" src="/resources/images/people-main.png" style="float:centre; width:80%" /></div></div>', 'metaDescription' => null, 'metaTitle' => null, 'metaKeywords' => null, 'css' => null, 'js' => null, 'createdAt' => object(DateTime), 'enabled' => true, 'homepage' => false, 'host' => null, 'locale' => null, 'category_id' => 5, 'parent_id' => null), array('deferEagerLoad' => true, 'fetchAlias' => 'page', 'fetchMode' => array('App\Entity\Page' => array('category' => 2))))
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php:271)
  at Doctrine\ORM\Internal\Hydration\ObjectHydrator->getEntity(array('id' => 1, 'title' => 'MAMIAS', 'slug' => 'mamias', 'content' => '<div class="row"><div class="col-lg-7"><h2>MArine Mediterranean Invasive Alien Species Database</h2><h3>Since 2012!</h3><p>The Database includes Alien species, cryptogenic ones. It includes also species that have been occasionally reported as alien but were subsequently excluded from lists, along with the reasoning of their exclusion.</p><p>As provided for by the Action Plan concerning species introduction and invasive species in the Mediterranean Sea, a first version of a regional system for the collection, analysis and dissemination of information on alien and invasive species was developed. The online database on marine invasive species in the Mediterranean Sea (MAMIAS; www.mamias.org) gives information on invasive non-indigenous species in the Mediterranean (list of alien species, list of marine invasive species, list of vectors, etc...) and allows the use of different filters to find required data and retrieve statistics at regional and national level about aliens and invasive species.<br /> </p><p>The Catalogue is the core of the MAMIAS. It contains the information needed to efficiently retrieve information on NIS distribution in the Mediterranean. The Catalogue currently includes information on about 1400 alien taxa. The MAMIAS Catalogue was initially based on an inventory of all species reported to be alien in the Mediterranean through published papers and grey litterature.</p><p>Since the initial compilation, the Catalogue was updated in 2017, revised and validated through a process which includes several steps to achieve high quality standards.In the Catalogue, each valid name is connected it with additional information for each species (e.g. taxonomy,sysnonyms, etc...). A taxonomic tree (kingdom, phylum/division, class, order, and family) is associated with every species in the Catalogue.<br /> </p><p>Information on pathways of introduction is included if known. MAMIAS will gradually align its pathways categorization to the one proposed by the Convention of the Biological Diversity (CBD 2014. Pathways of introduction of invasive species, their prioritization and management. UNEP/CBD/SBSTTA/18/9/Add.1, Montreal, Canada, 23-28 June 2014, 18 pp.), aiming at achieving synchronization and harmonizing of information on Alien Species pathways.</p><p>Species that are recognized to have a high impact present (species lists of DAISIE, GISD, NOBANIS, CABI, MedPAN and SEBI-2010) are highlighted. The occurrences of Alien Species in the Mediterranean results from spatial data coming from screening the scientific literature and retrieving geo-referenced data, the Contracting Parties Surveillance systems established to comply with the Decision on IMAP and from a network of Scientists working in the Mediterranean, on the basis of the species contained in the MAMIAS Catalogue. Data collected are then shown in occurrences maps at for each species of the catalogue when existing</p><p>For citing MAMIAS please use: SPA/RAC-UNEP/MAP- Marine Mediterranean Invasive Alien Species Database (MAMIAS) http://www.mamias.org</p></div><div class="col-lg-5"><img alt="MAMIAS 3.0" class="img-fluid" src="/resources/images/people-main.png" style="float:centre; width:80%" /></div></div>', 'metaDescription' => null, 'metaTitle' => null, 'metaKeywords' => null, 'css' => null, 'js' => null, 'createdAt' => object(DateTime), 'enabled' => true, 'homepage' => false, 'host' => null, 'locale' => null, 'category_id' => 5, 'parent_id' => null), 'page')
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php:492)
  at Doctrine\ORM\Internal\Hydration\ObjectHydrator->hydrateRowData(array('id_0' => 1, 'title_1' => 'MAMIAS', 'slug_2' => 'mamias', 'page_content_3' => '<div class="row"><div class="col-lg-7"><h2>MArine Mediterranean Invasive Alien Species Database</h2><h3>Since 2012!</h3><p>The Database includes Alien species, cryptogenic ones. It includes also species that have been occasionally reported as alien but were subsequently excluded from lists, along with the reasoning of their exclusion.</p><p>As provided for by the Action Plan concerning species introduction and invasive species in the Mediterranean Sea, a first version of a regional system for the collection, analysis and dissemination of information on alien and invasive species was developed. The online database on marine invasive species in the Mediterranean Sea (MAMIAS; www.mamias.org) gives information on invasive non-indigenous species in the Mediterranean (list of alien species, list of marine invasive species, list of vectors, etc...) and allows the use of different filters to find required data and retrieve statistics at regional and national level about aliens and invasive species.<br /> </p><p>The Catalogue is the core of the MAMIAS. It contains the information needed to efficiently retrieve information on NIS distribution in the Mediterranean. The Catalogue currently includes information on about 1400 alien taxa. The MAMIAS Catalogue was initially based on an inventory of all species reported to be alien in the Mediterranean through published papers and grey litterature.</p><p>Since the initial compilation, the Catalogue was updated in 2017, revised and validated through a process which includes several steps to achieve high quality standards.In the Catalogue, each valid name is connected it with additional information for each species (e.g. taxonomy,sysnonyms, etc...). A taxonomic tree (kingdom, phylum/division, class, order, and family) is associated with every species in the Catalogue.<br /> </p><p>Information on pathways of introduction is included if known. MAMIAS will gradually align its pathways categorization to the one proposed by the Convention of the Biological Diversity (CBD 2014. Pathways of introduction of invasive species, their prioritization and management. UNEP/CBD/SBSTTA/18/9/Add.1, Montreal, Canada, 23-28 June 2014, 18 pp.), aiming at achieving synchronization and harmonizing of information on Alien Species pathways.</p><p>Species that are recognized to have a high impact present (species lists of DAISIE, GISD, NOBANIS, CABI, MedPAN and SEBI-2010) are highlighted. The occurrences of Alien Species in the Mediterranean results from spatial data coming from screening the scientific literature and retrieving geo-referenced data, the Contracting Parties Surveillance systems established to comply with the Decision on IMAP and from a network of Scientists working in the Mediterranean, on the basis of the species contained in the MAMIAS Catalogue. Data collected are then shown in occurrences maps at for each species of the catalogue when existing</p><p>For citing MAMIAS please use: SPA/RAC-UNEP/MAP- Marine Mediterranean Invasive Alien Species Database (MAMIAS) http://www.mamias.org</p></div><div class="col-lg-5"><img alt="MAMIAS 3.0" class="img-fluid" src="/resources/images/people-main.png" style="float:centre; width:80%" /></div></div>', 'meta_description_4' => null, 'meta_title_5' => null, 'meta_keywords_6' => null, 'css_7' => null, 'js_8' => null, 'created_at_9' => '2020-02-11 14:42:57', 'enabled_10' => true, 'homepage_11' => false, 'host_12' => null, 'locale_13' => null, 'category_id_14' => 5, 'parent_id_15' => null), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php:162)
  at Doctrine\ORM\Internal\Hydration\ObjectHydrator->hydrateAllData()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php:153)
  at Doctrine\ORM\Internal\Hydration\AbstractHydrator->hydrateAll(object(Statement), object(ResultSetMapping), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:977)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:923)
  at Doctrine\ORM\AbstractQuery->execute(null, 1)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:726)
  at Doctrine\ORM\AbstractQuery->getResult()
     (vendor/orbitale/cms-bundle/Repository/PageRepository.php:112)
  at Orbitale\Bundle\CmsBundle\Repository\PageRepository->findFrontPages(array('mamias'), 'dev.mamias.org', 'en')
     (vendor/orbitale/cms-bundle/Controller/PageController.php:78)
  at Orbitale\Bundle\CmsBundle\Controller\PageController->getPages(array('mamias'))
     (vendor/orbitale/cms-bundle/Controller/PageController.php:43)
  at Orbitale\Bundle\CmsBundle\Controller\PageController->indexAction(object(Request), 'mamias', null)
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:25)