Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

GET http://www.coste.codes/public/de/blog/page/2?tag=dolore

BlogController :: index

GET Parameters

Key Value
tag
"dolore"

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_cache
0 of 0
[â–¼ Symfony\Component\HttpKernel\Attribute\Cache {#474 â–¶ +expires: null +maxage: null +smaxage: 10 +public: null +mustRevalidate: false +vary: [] +lastModified: null +etag: null +maxStale: null +staleWhileRevalidate: null +staleIfError: null } ]
_check_controller_is_allowed
-1
_controller
"App\Controller\BlogController::index"
_firewall_context
"security.firewall.map.context.main"
_format
"html"
_locale
"de"
_route
"blog_index_paginated"
_route_params
0 of 0
[â–¼ "_format" => "html" "_locale" => "de" "page" => "2" ]
_security_firewall_run
"_security_main"
_stopwatch_token
"86c32f"
page
"2"

Request Headers

Header Value
accept
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7"
accept-encoding
"gzip, deflate"
cache-control
"no-cache"
forwarded
"for=18.216.211.173; proto=http; host=www.coste.codes"
host
"www.coste.codes"
pragma
"no-cache"
remote-ip
"18.216.211.173"
remote-port
"17615"
upgrade-insecure-requests
"1"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
x-forwarded-for
"18.216.211.173"
x-forwarded-port
"80"
x-forwarded-proto
"http"
x-iplb-unique-id
"12D8D3AD:44CF_D5BA2104:0050_68396242_39C5A:02F7"
x-ovhrequest-id
"3f964c9e60d8aac9e28eaeec306b909c"
x-php-ob-level
"1"
x-predictor
"1"
x-remote-ip
"18.216.211.173"
x-remote-port
"17615"
x-remote-proto
"http"

Request Content

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

Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded

ErrorException

Show exception properties
0 of 0
ErrorException {#1880 â–¼ #severity: E_NOTICE }
  1.      * Write to stream
  2.      * @param resource $stream
  3.      */
  4.     protected function streamWrite($streamLogRecord $record): void
  5.     {
  6.         fwrite($stream, (string) $record->formatted);
  7.     }
  8.     private function customErrorHandler(int $codestring $msg): bool
  9.     {
  10.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  1.         if ($this->useLocking) {
  2.             // ignoring errors here, there's not much we can do about them
  3.             flock($streamLOCK_EX);
  4.         }
  5.         $this->streamWrite($stream$record);
  6.         if ($this->useLocking) {
  7.             flock($streamLOCK_UN);
  8.         }
  9.     }
  1.             $record $this->processRecord($record);
  2.         }
  3.         $record->formatted $this->getFormatter()->format($record);
  4.         $this->write($record);
  5.         return false === $this->bubble;
  6.     }
  7.     /**
  1.                 }
  2.                 // once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
  3.                 try {
  4.                     $handled true;
  5.                     if (true === $handler->handle(clone $record)) {
  6.                         break;
  7.                     }
  8.                 } catch (Throwable $e) {
  9.                     $this->handleException($e$record);
  1.      * @param string|Stringable $message The log message
  2.      * @param mixed[]           $context The log context
  3.      */
  4.     public function info(string|\Stringable $message, array $context = []): void
  5.     {
  6.         $this->addRecord(Level::Info, (string) $message$context);
  7.     }
  8.     /**
  9.      * Adds a log record at the NOTICE level.
  10.      *
  1.         $this->logger $logger;
  2.     }
  3.     public function __destruct()
  4.     {
  5.         $this->logger->info('Disconnecting');
  6.     }
  7.     public function prepare(string $sql): DriverStatement
  8.     {
  9.         return new Statement(
Connection->__destruct()