https://nginx.staging.demo-ongoing-symfony.de3.amazee.io/pt_BR/blog/rss.xml

ErrorController

Request

GET Parameters

No GET parameters

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_controller
"error_controller"
_format
"xml"
_stopwatch_token
"8a74f9"
exception
Doctrine\DBAL\Exception\TableNotFoundException {#593
  #message: "An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'demo-ongoing-symfony-staging_5AR4w.symfony_demo_post' doesn't exist"
  #code: 1146
  #file: "/app/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php"
  #line: 51
  -previous: Doctrine\DBAL\Driver\PDO\Exception {#644 …}
  -query: Doctrine\DBAL\Query {#648 …}
  trace: {
    /app/vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51 {
      Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(Exception $exception, ?Query $query): DriverException …
      › case 1146:    return new TableNotFoundException($exception, $query);}
    /app/vendor/doctrine/dbal/src/Connection.php:1768 {
      Doctrine\DBAL\Connection->handleDriverException(Exception $driverException, ?Query $query): DriverException …
      › 
      › $exception = $this->exceptionConverter->convert($driverException, $query);arguments: {
        $exception: Doctrine\DBAL\Driver\PDO\Exception {#644 …}
        $query: Doctrine\DBAL\Query {#648 …}
      }
    }
    /app/vendor/doctrine/dbal/src/Connection.php:1707 {
      Doctrine\DBAL\Connection->convertExceptionDuringQuery(Exception $e, string $sql, array $params = [], array $types = []): DriverException …
      › ): DriverException {    return $this->handleDriverException($e, new Query($sql, $params, $types));}
      arguments: {
        $driverException: Doctrine\DBAL\Driver\PDO\Exception {#644 …}
        $query: Doctrine\DBAL\Query {#648 …}
      }
    }
    /app/vendor/doctrine/dbal/src/Connection.php:1039 {
      Doctrine\DBAL\Connection->executeQuery(string $sql, array $params = [], $types = [], QueryCacheProfile $qcp = null): Result …
      › } catch (Driver\Exception $e) {    throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);} finally {
      arguments: {
        $e: Doctrine\DBAL\Driver\PDO\Exception {#644 …}
        $sql: "SELECT DISTINCT s0_.id AS id_0, s0_.published_at AS published_at_1 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? ORDER BY s0_.published_at DESC LIMIT 10"
        $params: [ …1]
        $types: [ …1]
      }
    }
    /app/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31 {
      Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute(Connection $conn, array $params, array $types) …
      › {    return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}
      arguments: {
        $sql: "SELECT DISTINCT s0_.id AS id_0, s0_.published_at AS published_at_1 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? ORDER BY s0_.published_at DESC LIMIT 10"
        $params: [ …1]
        $types: [ …1]
        $qcp: null
      }
    }
    /app/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:322 {
      Doctrine\ORM\Query->_doExecute() …
      › 
      ›     return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}
      arguments: {
        $conn: Doctrine\DBAL\Connection {#372 …}
        $params: [ …1]
        $types: [ …1]
      }
    }
    /app/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1160 {
      Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache($parameters = null, $hydrationMode = null) …
      › 
      › $stmt = $this->_doExecute();}
    /app/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1115 {
      Doctrine\ORM\AbstractQuery->execute($parameters = null, $hydrationMode = null) …
      › 
      ›     return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}
      arguments: {
        $parameters: null
        $hydrationMode: 3
      }
    }
    /app/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:899 {
      Doctrine\ORM\AbstractQuery->getScalarResult() …
      › {    return $this->execute(null, self::HYDRATE_SCALAR);}
      arguments: {
        $parameters: null
        $hydrationMode: 3
      }
    }
    /app/vendor/doctrine/orm/lib/Doctrine/ORM/Tools/Pagination/Paginator.php:148 {
      Doctrine\ORM\Tools\Pagination\Paginator->getIterator() …
      › 
      › $foundIdRows = $subQuery->getScalarResult();}
    /app/src/Pagination/Paginator.php:60 {
      App\Pagination\Paginator->paginate(int $page = 1): self …
      › 
      › $this->results = $paginator->getIterator();$this->numResults = $paginator->count();
    }
    /app/src/Repository/PostRepository.php:54 {
      App\Repository\PostRepository->findLatest(int $page = 1, Tag $tag = null): Paginator …
      › 
      ›     return (new Paginator($qb))->paginate($page);}
      arguments: {
        $page: 1
      }
    }
    /app/src/Controller/BlogController.php:57 {
      App\Controller\BlogController->index(Request $request, int $page, string $_format, PostRepository $posts, TagRepository $tags): Response …
      › }$latestPosts = $posts->findLatest($page, $tag);arguments: {
        $page: 1
        $tag: null
      }
    }
    /app/vendor/symfony/http-kernel/HttpKernel.php:152 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › // call controller$response = $controller(...$arguments);arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#3 …}
        $page: 1
        $_format: "xml"
        $posts: App\Repository\PostRepository {#428 …}
        $tags: App\Repository\TagRepository {#522 …}
      }
    }
    /app/vendor/symfony/http-kernel/HttpKernel.php:74 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#3 …}
        $type: 1
      }
    }
    /app/vendor/symfony/http-kernel/Kernel.php:202 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#3 …}
        $type: 1
        $catch: true
      }
    }
    /app/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
      Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
      › {    $response = $this->kernel->handle($this->request);    $response->send();
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#3 …}
      }
    }
    /app/vendor/autoload_runtime.php:29 {
      require_once …
      ›         ->getRunner($app)        ->run());
    }
    /app/public/index.php:5 {
      › 
      › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
        "/app/vendor/autoload_runtime.php"
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Logger {#63 …6}

Request Headers

Header Value
accept
"*/*"
accept-encoding
"gzip, br, zstd, deflate"
content-length
""
content-type
""
host
"nginx.staging.demo-ongoing-symfony.de3.amazee.io"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
x-forwarded-for
"216.73.216.14"
x-forwarded-host
"nginx.staging.demo-ongoing-symfony.de3.amazee.io"
x-forwarded-port
"443"
x-forwarded-proto
"https"
x-forwarded-scheme
"https"
x-php-ob-level
"1"
x-real-ip
"216.73.216.14"
x-request-id
"d884fd8ae016434c2baa67f74a11798c"
x-scheme
"https"

Request Content

Request content not available (it was retrieved as a resource).

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Sat, 21 Feb 2026 21:49:25 GMT"
x-debug-exception
"An%20exception%20occurred%20while%20executing%20a%20query%3A%20SQLSTATE%5B42S02%5D%3A%20Base%20table%20or%20view%20not%20found%3A%201146%20Table%20%27demo-ongoing-symfony-staging_5AR4w.symfony_demo_post%27%20doesn%27t%20exist"
x-debug-exception-file
"%2Fapp%2Fvendor%2Fdoctrine%2Fdbal%2Fsrc%2FDriver%2FAPI%2FMySQL%2FExceptionConverter.php:51"
x-debug-token
"74054a"

Cookies

Request Cookies

No request cookies

Response Cookies

No response cookies

Session

Session Metadata

No session metadata

Session Attributes

No session attributes

Session Usage

0 Usages
Stateless check enabled

Session not used.

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
(no data)

Defined as regular env variables

Key Value
APP_DEBUG
"1"
APP_ENV
"dev"
APP_SECRET
"2ca64f8d83b9e89f5f19d672841d6bb8"
BASH_ENV
"/home/.bashrc"
CONTENT_LENGTH
""
CONTENT_TYPE
""
DATABASE_URL
"mysql://demo-on_xlMH2:rfYczfSIa8egrMphkrgdO1wn@mariadb-23e06c65-990f-4fc8-80b2-7f15b3f77332:3306/demo-ongoing-symfony-staging_5AR4w"
DOCUMENT_ROOT
"/app/public"
DOCUMENT_URI
"/index.php"
ENV
"/home/.bashrc"
FCGI_ROLE
"RESPONDER"
GATEWAY_INTERFACE
"CGI/1.1"
GPG_KEYS
"528995BFEDFBA7191D46839EF9BA0ADA31CBD89E 39B641343D8C104B2B146DC3F9C39DC0B9698544 F1F692238FBC1666E5A5CCD4199F9DFEF6FFBAFD"
HOME
"/home"
HOSTNAME
"nginx-7db9b74c44-drwvv"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"nginx.staging.demo-ongoing-symfony.de3.amazee.io"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_FORWARDED_FOR
"216.73.216.14"
HTTP_X_FORWARDED_HOST
"nginx.staging.demo-ongoing-symfony.de3.amazee.io"
HTTP_X_FORWARDED_PORT
"443"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_SCHEME
"https"
HTTP_X_REAL_IP
"216.73.216.14"
HTTP_X_REQUEST_ID
"d884fd8ae016434c2baa67f74a11798c"
HTTP_X_SCHEME
"https"
KUBERNETES_PORT
"tcp://172.20.0.1:443"
KUBERNETES_PORT_443_TCP
"tcp://172.20.0.1:443"
KUBERNETES_PORT_443_TCP_ADDR
"172.20.0.1"
KUBERNETES_PORT_443_TCP_PORT
"443"
KUBERNETES_PORT_443_TCP_PROTO
"tcp"
KUBERNETES_SERVICE_HOST
"172.20.0.1"
KUBERNETES_SERVICE_PORT
"443"
KUBERNETES_SERVICE_PORT_HTTPS
"443"
LAGOON
"php"
LAGOON_AUTOGENERATED_ROUTES
"https://nginx.staging.demo-ongoing-symfony.de3.amazee.io"
LAGOON_DOMAIN
"nginx.staging.demo-ongoing-symfony.de3.amazee.io"
LAGOON_ENVIRONMENT
"staging"
LAGOON_ENVIRONMENT_TYPE
"development"
LAGOON_GIT_BRANCH
"staging"
LAGOON_GIT_SAFE_BRANCH
"staging"
LAGOON_GIT_SHA
"0"
LAGOON_KUBERNETES
"de3.amazee.io"
LAGOON_PROJECT
"demo-ongoing-symfony"
LAGOON_ROUTE
"https://nginx.staging.demo-ongoing-symfony.de3.amazee.io"
LAGOON_ROUTES
"https://nginx.staging.demo-ongoing-symfony.de3.amazee.io"
LAGOON_VERSION
"22.2.0"
MARIADB_DATABASE
"demo-ongoing-symfony-staging_5AR4w"
MARIADB_HOST
"mariadb-23e06c65-990f-4fc8-80b2-7f15b3f77332"
MARIADB_PASSWORD
"rfYczfSIa8egrMphkrgdO1wn"
MARIADB_PORT
"3306"
MARIADB_READREPLICA_HOSTS
"readreplica-mariadb-c295e199-d481-4422-a5e1-b245f67c1d1b"
MARIADB_USERNAME
"demo-on_xlMH2"
NGINX_FASTCGI_PASS
"127.0.0.1"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PHPIZE_DEPS
"autoconf \t\tdpkg-dev dpkg \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkgconf \t\tre2c"
PHP_ASC_URL
"https://www.php.net/distributions/php-8.1.3.tar.xz.asc"
PHP_CFLAGS
"-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
PHP_CPPFLAGS
"-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
PHP_INI_DIR
"/usr/local/etc/php"
PHP_LDFLAGS
"-Wl,-O1 -pie"
PHP_SELF
"/index.php"
PHP_SHA256
"5d65a11071b47669c17452fb336c290b67c101efb745c1dbe7525b5caf546ec6"
PHP_URL
"https://www.php.net/distributions/php-8.1.3.tar.xz"
PHP_VERSION
"8.1.3"
PWD
"/app"
QUERY_STRING
""
REDIRECT_STATUS
"200"
REMOTE_ADDR
"216.73.216.14"
REMOTE_PORT
""
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"http"
REQUEST_TIME
1771710565
REQUEST_TIME_FLOAT
1771710565.273
REQUEST_URI
"/pt_BR/blog/rss.xml"
SCRIPT_FILENAME
"/app/public/index.php"
SCRIPT_NAME
"/index.php"
SERVER_ADDR
"10.200.162.54"
SERVER_NAME
"nginx.staging.demo-ongoing-symfony.de3.amazee.io"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"nginx/1.19.9"
SHLVL
"1"
TMP
"/tmp"
TMPDIR
"/tmp"
TRUSTED_HOSTS
".*"
TRUSTED_PROXIES
"127.0.0.1,10.99.99.1,REMOTE_ADDR"
USER
"user"
WEBROOT
"public"

Parent Request

Return to parent request (token = 845671)

Key Value
_cache
Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache {#337
  -expires: null
  -maxage: null
  -smaxage: 10
  -public: null
  -mustRevalidate: null
  -vary: null
  -lastModified: null
  -etag: null
  -maxStale: null
  -staleWhileRevalidate: null
  -staleIfError: null
}
_controller
"App\Controller\BlogController::index"
_firewall_context
"security.firewall.map.context.main"
_format
"xml"
_locale
"pt_BR"
_remove_csp_headers
true
_route
"blog_rss"
_route_params
[
  "page" => "1"
  "_format" => "xml"
  "_locale" => "pt_BR"
]
_security_firewall_run
"_security_main"
_stopwatch_token
"134974"
page
"1"