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/nl/blog/?tag=consectetur

BlogController :: index

GET Parameters

Key Value
tag
"consectetur"

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
"nl"
_route
"blog_index"
_route_params
0 of 0
[â–¼ "page" => "1" "_format" => "html" "_locale" => "nl" ]
_security_firewall_run
"_security_main"
_stopwatch_token
"dcc6d0"
page
"1"

Request Headers

Header Value
accept
"*/*"
accept-encoding
"gzip, br, zstd, deflate"
forwarded
"for=18.220.121.27; proto=http; host=www.coste.codes"
host
"www.coste.codes"
remote-ip
"18.220.121.27"
remote-port
"62146"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
x-forwarded-for
"18.220.121.27"
x-forwarded-port
"80"
x-forwarded-proto
"http"
x-iplb-unique-id
"12DC791B:F2C2_D5BA2104:0050_6824D873_853E:1280"
x-ovhrequest-id
"4af27272c747b166a9f68dfffe879270"
x-php-ob-level
"1"
x-predictor
"1"
x-remote-ip
"18.220.121.27"
x-remote-port
"62146"
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 {#1884 â–¼ #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()