Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 128782336 bytes) in /www/wwwroot/mirror.cnop.net/app/vendor/symfony/cache/Marshaller/DefaultMarshaller.php on line 49
Whoops! There was an error. • Directory Lister
Whoops \ Exception \ ErrorException (E_ERROR)
Allowed memory size of 134217728 bytes exhausted (tried to allocate 128782336 bytes) Whoops\Exception\ErrorException thrown with message "Allowed memory size of 134217728 bytes exhausted (tried to allocate 128782336 bytes)" Stacktrace: #2 Whoops\Exception\ErrorException in /www/wwwroot/mirror.cnop.net/app/vendor/symfony/cache/Marshaller/DefaultMarshaller.php:49 #1 Whoops\Run:handleError in /www/wwwroot/mirror.cnop.net/app/vendor/filp/whoops/src/Whoops/Run.php:486 #0 Whoops\Run:handleShutdown in [internal]:0
Stack frames (3)
2
Whoops\Exception\ErrorException
/vendor/symfony/cache/Marshaller/DefaultMarshaller.php49
1
Whoops\Run handleError
/vendor/filp/whoops/src/Whoops/Run.php486
0
Whoops\Run handleShutdown
[internal]0
/www/wwwroot/mirror.cnop.net/app/vendor/symfony/cache/Marshaller/DefaultMarshaller.php
        } elseif ($useIgbinarySerialize && (!\extension_loaded('igbinary') || (\PHP_VERSION_ID >= 70400 && version_compare('3.1.6', phpversion('igbinary'), '>')))) {
            throw new CacheException(\extension_loaded('igbinary') && \PHP_VERSION_ID >= 70400 ? 'Please upgrade the "igbinary" PHP extension to v3.1.6 or higher.' : 'The "igbinary" PHP extension is not loaded.');
        }
        $this->useIgbinarySerialize = $useIgbinarySerialize;
        $this->throwOnSerializationFailure = $throwOnSerializationFailure;
    }
 
    /**
     * {@inheritdoc}
     */
    public function marshall(array $values, ?array &$failed): array
    {
        $serialized = $failed = [];
 
        foreach ($values as $id => $value) {
            try {
                if ($this->useIgbinarySerialize) {
                    $serialized[$id] = igbinary_serialize($value);
                } else {
                    $serialized[$id] = serialize($value);
                }
            } catch (\Exception $e) {
                if ($this->throwOnSerializationFailure) {
                    throw new \ValueError($e->getMessage(), 0, $e);
                }
                $failed[] = $id;
            }
        }
 
        return $serialized;
    }
 
    /**
     * {@inheritdoc}
     */
    public function unmarshall(string $value)
    {
        if ('b:0;' === $value) {
            return false;
        }
Arguments
  1. "Allowed memory size of 134217728 bytes exhausted (tried to allocate 128782336 bytes)"
    
/www/wwwroot/mirror.cnop.net/app/vendor/filp/whoops/src/Whoops/Run.php
     *
     * @return void
     */
    public function handleShutdown()
    {
        // If we reached this step, we are in shutdown handler.
        // An exception thrown in a shutdown handler will not be propagated
        // to the exception handler. Pass that information along.
        $this->canThrowExceptions = false;
 
        $error = $this->system->getLastError();
        if ($error && Misc::isLevelFatal($error['type'])) {
            // If there was a fatal error,
            // it was not handled in handleError yet.
            $this->allowQuit = false;
            $this->handleError(
                $error['type'],
                $error['message'],
                $error['file'],
                $error['line']
            );
        }
    }
 
    /**
     * @param Throwable $exception
     *
     * @return Inspector
     */
    private function getInspector($exception)
    {
        return new Inspector($exception);
    }
 
    /**
     * Resolves the giving handler.
     *
     * @param callable|HandlerInterface $handler
     *
     * @return HandlerInterface
[internal]

Environment & details:

Key Value
zip
"gradle"
empty
empty
empty
empty
Key Value
USER
"www"
HOME
"/home/www"
HTTP_USER_AGENT
"claudebot"
HTTP_ACCEPT
"*/*"
HTTP_HOST
"mirror.cnop.net"
PATH_INFO
""
REDIRECT_STATUS
"200"
SERVER_NAME
"mirror.cnop.net"
SERVER_PORT
"443"
SERVER_ADDR
"80.208.227.124"
REMOTE_PORT
"48862"
REMOTE_ADDR
"35.175.246.88"
SERVER_SOFTWARE
"nginx/1.19.9"
GATEWAY_INTERFACE
"CGI/1.1"
HTTPS
"on"
REQUEST_SCHEME
"https"
SERVER_PROTOCOL
"HTTP/2.0"
DOCUMENT_ROOT
"/www/wwwroot/mirror.cnop.net"
DOCUMENT_URI
"/index.php"
REQUEST_URI
"/?zip=gradle"
SCRIPT_NAME
"/index.php"
CONTENT_LENGTH
""
CONTENT_TYPE
""
REQUEST_METHOD
"GET"
QUERY_STRING
"zip=gradle"
SCRIPT_FILENAME
"/www/wwwroot/mirror.cnop.net/index.php"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711702789.1722
REQUEST_TIME
1711702789
APP_DEBUG
"false"
APP_LANGUAGE
"en"
DISPLAY_READMES
"true"
READMES_FIRST
"false"
ZIP_DOWNLOADS
"true"
GOOGLE_ANALYTICS_ID
"false"
MATOMO_ANALYTICS_URL
"false"
MATOMO_ANALYTICS_ID
"false"
SORT_ORDER
"type"
REVERSE_SORT
"false"
Key Value
APP_DEBUG
"false"
APP_LANGUAGE
"en"
DISPLAY_READMES
"true"
READMES_FIRST
"false"
ZIP_DOWNLOADS
"true"
GOOGLE_ANALYTICS_ID
"false"
MATOMO_ANALYTICS_URL
"false"
MATOMO_ANALYTICS_ID
"false"
SORT_ORDER
"type"
REVERSE_SORT
"false"
0. Whoops\Handler\PrettyPageHandler