Deprecated: Grav\Common\Grav::setup(): Implicitly marking parameter $environment as nullable is deprecated, the explicit nullable type must be used instead in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php on line 203

Deprecated: Grav\Common\Grav::header(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php on line 525

Deprecated: Grav\Common\Grav::fireEvent(): Implicitly marking parameter $event as nullable is deprecated, the explicit nullable type must be used instead in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php on line 588

Deprecated: Grav\Common\Debugger::profile(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Debugger.php on line 543

Deprecated: Grav\Common\Debugger::stopProfiling(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Debugger.php on line 584

Deprecated: Grav\Common\Debugger::addEvent(): Implicitly marking parameter $time as nullable is deprecated, the explicit nullable type must be used instead in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Debugger.php on line 775
Crikey! There was an error...
Whoops \ Exception \ ErrorException (E_WARNING)
Cannot modify header information - headers already sent by (output started at /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php:203) Whoops\Exception\ErrorException thrown with message "Cannot modify header information - headers already sent by (output started at /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php:203)" Stacktrace: #3 Whoops\Exception\ErrorException in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php:533 #2 header in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php:533 #1 Grav\Common\Grav:header in /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php:337 #0 Grav\Common\Grav:process in /srv/disk8/2197592/www/quoipro.com/index.php:47
Stack frames (4)
3
Whoops\Exception\ErrorException
/system/src/Grav/Common/Grav.php533
2
header
/system/src/Grav/Common/Grav.php533
1
Grav\Common\Grav header
/system/src/Grav/Common/Grav.php337
0
Grav\Common\Grav process
/index.php47
/srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php
        } else {
            $this->redirect($route, $code);
        }
    }
 
    /**
     * Set response header.
     *
     * @param ResponseInterface|null $response
     * @return void
     */
    public function header(ResponseInterface $response = null): void
    {
        if (null === $response) {
            /** @var PageInterface $page */
            $page = $this['page'];
            $response = new Response($page->httpResponseCode(), $page->httpHeaders(), '');
        }
 
        header("HTTP/{$response->getProtocolVersion()} {$response->getStatusCode()} {$response->getReasonPhrase()}");
        foreach ($response->getHeaders() as $key => $values) {
            // Skip internal Grav headers.
            if (strpos($key, 'Grav-Internal-') === 0) {
                continue;
            }
            foreach ($values as $i => $value) {
                header($key . ': ' . $value, $i === 0);
            }
        }
    }
 
    /**
     * Set the system locale based on the language and configuration
     *
     * @return void
     */
    public function setLocale(): void
    {
        // Initialize Locale if set and configured.
        if ($this['language']->enabled() && $this['config']->get('system.languages.override_locale')) {
Arguments
  1. "Cannot modify header information - headers already sent by (output started at /srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php:203)"
    
/srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php
        } else {
            $this->redirect($route, $code);
        }
    }
 
    /**
     * Set response header.
     *
     * @param ResponseInterface|null $response
     * @return void
     */
    public function header(ResponseInterface $response = null): void
    {
        if (null === $response) {
            /** @var PageInterface $page */
            $page = $this['page'];
            $response = new Response($page->httpResponseCode(), $page->httpHeaders(), '');
        }
 
        header("HTTP/{$response->getProtocolVersion()} {$response->getStatusCode()} {$response->getReasonPhrase()}");
        foreach ($response->getHeaders() as $key => $values) {
            // Skip internal Grav headers.
            if (strpos($key, 'Grav-Internal-') === 0) {
                continue;
            }
            foreach ($values as $i => $value) {
                header($key . ': ' . $value, $i === 0);
            }
        }
    }
 
    /**
     * Set the system locale based on the language and configuration
     *
     * @return void
     */
    public function setLocale(): void
    {
        // Initialize Locale if set and configured.
        if ($this['language']->enabled() && $this['config']->get('system.languages.override_locale')) {
Arguments
  1. "HTTP/1.1 200 OK"
    
/srv/disk8/2197592/www/quoipro.com/system/src/Grav/Common/Grav.php
        // Prevent caching if session messages were displayed in the page.
        $noCache = $messages->isCleared();
        if ($noCache) {
            $response = $response->withHeader('Cache-Control', 'no-store, max-age=0');
        }
 
        // Handle ETag and If-None-Match headers.
        if ($response->getHeaderLine('ETag') === '1') {
            $etag = md5($body);
            $response = $response->withHeader('ETag', '"' . $etag . '"');
 
            $search = trim($this['request']->getHeaderLine('If-None-Match'), '"');
            if ($noCache === false && $search === $etag) {
                $response = $response->withStatus(304);
                $body = '';
            }
        }
 
        // Echo page content.
        $this->header($response);
        echo $body;
 
        $this['debugger']->render();
 
        // Response object can turn off all shutdown processing. This can be used for example to speed up AJAX responses.
        // Note that using this feature will also turn off response compression.
        if ($response->getHeaderLine('Grav-Internal-SkipShutdown') !== '1') {
            register_shutdown_function([$this, 'shutdown']);
        }
    }
 
    /**
     * Clean any output buffers. Useful when exiting from the application.
     *
     * Please use $grav->close() and $grav->redirect() instead of calling this one!
     *
     * @return void
     */
    public function cleanOutputBuffers(): void
    {
Arguments
  1. Grav\Framework\Psr7\Response {#87}
    
/srv/disk8/2197592/www/quoipro.com/index.php
 
// Register the auto-loader.
$loader = require $autoload;
 
// Set timezone to default, falls back to system if php.ini not set
date_default_timezone_set(@date_default_timezone_get());
 
// Set internal encoding.
@ini_set('default_charset', 'UTF-8');
mb_internal_encoding('UTF-8');
 
use Grav\Common\Grav;
use RocketTheme\Toolbox\Event\Event;
 
// Get the Grav instance
$grav = Grav::instance(array('loader' => $loader));
 
// Process the page
try {
    $grav->process();
} catch (\Error|\Exception $e) {
    $grav->fireEvent('onFatalException', new Event(array('exception' => $e)));
    throw $e;
}
 

Environment & details:

empty
empty
empty
empty
Key Value
user
Grav\Common\User\User {#245}
redirect_after_login
null
Key Value
DOCUMENT_ROOT
"/home/www/quoipro.com"
SCRIPT_FILENAME
"/home/www/quoipro.com/index.php"
HTTP_HOST
"quoipro.com"
PHP_FCGI_MAX_REQUESTS
"200"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PHP_FCGI_CHILDREN
"0"
PWD
"/srv/disk8/2197592/www/quoipro.com"
CONTENT_LENGTH
"0"
HTTP_CONNECTION
"close"
SCRIPT_NAME
"/index.php"
REQUEST_URI
"/sitemap.xml"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/sitemap.xml"
REMOTE_PORT
"57870"
SERVER_ADMIN
"[no address given]"
CONTEXT_DOCUMENT_ROOT
"/home/domains/quoipro.com"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"http"
REMOTE_ADDR
"3.19.30.32"
SERVER_PORT
"80"
SERVER_ADDR
"185.176.40.75"
SERVER_NAME
"quoipro.com"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT
"*/*"
SCRIPT_URI
"http://quoipro.com/sitemap.xml"
SCRIPT_URL
"/sitemap.xml"
env_vhost
"quoipro.com"
UNIQUE_ID
"Z_Anx6IakvSqHgU-UQs2wwAAAIo"
REDIRECT_STATUS
"200"
REDIRECT_SCRIPT_URI
"http://quoipro.com/sitemap.xml"
REDIRECT_SCRIPT_URL
"/sitemap.xml"
REDIRECT_env_vhost
"quoipro.com"
REDIRECT_UNIQUE_ID
"Z_Anx6IakvSqHgU-UQs2wwAAAIo"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1743792071.9153
REQUEST_TIME
1743792071
argv
[]
argc
0
Key Value
DOCUMENT_ROOT
"/home/www/quoipro.com"
SCRIPT_FILENAME
"/home/www/quoipro.com/index.php"
HTTP_HOST
"quoipro.com"
PHP_FCGI_MAX_REQUESTS
"200"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PHP_FCGI_CHILDREN
"0"
PWD
"/srv/disk8/2197592/www/quoipro.com"
CONTENT_LENGTH
"0"
HTTP_CONNECTION
"close"
SCRIPT_NAME
"/index.php"
REQUEST_URI
"/sitemap.xml"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/sitemap.xml"
REMOTE_PORT
"57870"
SERVER_ADMIN
"[no address given]"
CONTEXT_DOCUMENT_ROOT
"/home/domains/quoipro.com"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"http"
REMOTE_ADDR
"3.19.30.32"
SERVER_PORT
"80"
SERVER_ADDR
"185.176.40.75"
SERVER_NAME
"quoipro.com"
SERVER_SOFTWARE
"Apache"
SERVER_SIGNATURE
""
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_ACCEPT
"*/*"
SCRIPT_URI
"http://quoipro.com/sitemap.xml"
SCRIPT_URL
"/sitemap.xml"
env_vhost
"quoipro.com"
UNIQUE_ID
"Z_Anx6IakvSqHgU-UQs2wwAAAIo"
REDIRECT_STATUS
"200"
REDIRECT_SCRIPT_URI
"http://quoipro.com/sitemap.xml"
REDIRECT_SCRIPT_URL
"/sitemap.xml"
REDIRECT_env_vhost
"quoipro.com"
REDIRECT_UNIQUE_ID
"Z_Anx6IakvSqHgU-UQs2wwAAAIo"
FCGI_ROLE
"RESPONDER"
0. Whoops\Handler\PrettyPageHandler
1. Whoops\Handler\CallbackHandler