Skip to Content
500 Internal Server Error

Notice: unserialize(): Error at offset 0 of 352 bytes in /mnt/web618/b0/90/548003390/htdocs/websites/tzpz-oyten-neos9-2026/Packages/Libraries/neos/cache/Classes/Frontend/VariableFrontend.php line 94

Exception Code1
Exception TypeNeos\Flow\Error\Exception
Log Reference20260604184450e09ae7
Thrown in FilePackages/Framework/Neos.Flow/Classes/Error/ErrorHandler.php
Line80

Toggle backtrace code
  1. Neos\Flow\Error\ErrorHandler::handleError()
  2. unserialize()
    Packages/Libraries/neos/cache/Classes/Frontend/VariableFrontend.php
    00092:             return false;
    
    00093:         }
    
    00094:         return ($this->useIgBinary === true) ? igbinary_unserialize($rawResult) : unserialize($rawResult);
    
    00095:     }
    
    00096: 
    
  3. Neos\Cache\Frontend\VariableFrontend::get()
    Packages/Libraries/neos/cache/Classes/Frontend/CacheEntryIterator.php
    00055:     public function current(): mixed
    
    00056:     {
    
    00057:         return $this->frontend->get((string) $this->backend->key());
    
    00058:     }
    
    00059: 
    
  4. Neos\Cache\Frontend\CacheEntryIterator::current()
    Data/Temporary/Development/Cache/Code/Flow_Object_Classes/Neos_Flow_Session_Data_SessionMetaDataStore.php
    Original File: Packages/Framework/Neos.Flow/Classes/Session/Data/SessionMetaDataStore.php
    00118:     public function retrieveAll(): \Generator
    
    00119:     {
    
    00120:         foreach ($this->cache->getIterator() as $sessionIdentifier => $sessionMetaData) {
    
    00121:             if ($sessionIdentifier === self::GARBAGE_COLLECTION_CACHE_IDENTIFIER) {
    
    00122:                 continue;
    
  5. Neos\Flow\Session\Data\SessionMetaDataStore_Original::retrieveAll()
    Data/Temporary/Development/Cache/Code/Flow_Object_Classes/Neos_Flow_Session_SessionManager.php
    Original File: Packages/Framework/Neos.Flow/Classes/Session/SessionManager.php
    00193:         $this->sessionMetaDataStore->startGarbageCollection();
    
    00194: 
    
    00195:         foreach ($this->sessionMetaDataStore->retrieveAll() as $sessionMetadata) {
    
    00196:             $lastActivitySecondsAgo = $now - $sessionMetadata->lastActivityTimestamp;
    
    00197:             if ($lastActivitySecondsAgo > $this->inactivityTimeout) {
    
  6. Neos\Flow\Session\SessionManager_Original::collectGarbage()
    Data/Temporary/Development/Cache/Code/Flow_Object_Classes/Neos_Flow_Session_SessionManager.php
    Original File: Packages/Framework/Neos.Flow/Classes/Session/SessionManager.php
    00230:         }
    
    00231:         if (rand(1, 100 * $factor) <= ($this->garbageCollectionProbability * $factor)) {
    
    00232:             $this->collectGarbage();
    
    00233:         }
    
    00234:     }
    
  7. Neos\Flow\Session\SessionManager_Original::shutdownObject()
    Packages/Framework/Neos.Flow/Classes/ObjectManagement/ObjectManager.php
    00574:         foreach ($shutdownObjects as $object) {
    
    00575:             $methodName = $shutdownObjects[$object];
    
    00576:             $object->$methodName();
    
    00577:         }
    
    00578:     }
    
  8. Neos\Flow\ObjectManagement\ObjectManager::callShutdownMethods()
    Packages/Framework/Neos.Flow/Classes/ObjectManagement/ObjectManager.php
    00486:             });
    
    00487:         } else {
    
    00488:             $this->callShutdownMethods($this->internalShutdownObjects);
    
    00489:         }
    
    00490:     }
    
  9. Neos\Flow\ObjectManagement\ObjectManager::shutdown()
  10. call_user_func_array()
    Packages/Framework/Neos.Flow/Classes/SignalSlot/Dispatcher.php
    00184:                 }
    
    00185:                 // Need to use call_user_func_array here, because $object may be the class name when the slot is a static method
    
    00186:                 call_user_func_array([$object, $slotInformation['method']], $finalSignalArguments);
    
    00187:             }
    
    00188:         }
    
  11. Neos\Flow\SignalSlot\Dispatcher::dispatch()
    Packages/Framework/Neos.Flow/Classes/Core/Bootstrap.php
    00459:     protected function emitBootstrapShuttingDown(string $runLevel)
    
    00460:     {
    
    00461:         $this->getSignalSlotDispatcher()->dispatch(__CLASS__, 'bootstrapShuttingDown', [$runLevel]);
    
    00462:     }
    
    00463: 
    
  12. Neos\Flow\Core\Bootstrap::emitBootstrapShuttingDown()
    Packages/Framework/Neos.Flow/Classes/Core/Bootstrap.php
    00130:                 break;
    
    00131:         }
    
    00132:         $this->emitBootstrapShuttingDown($runlevel);
    
    00133:     }
    
    00134: 
    
  13. Neos\Flow\Core\Bootstrap::shutdown()
    Packages/Framework/Neos.Flow/Classes/Http/RequestHandler.php
    00106: 
    
    00107:         $this->sendResponse($this->httpResponse);
    
    00108:         $this->bootstrap->shutdown(Bootstrap::RUNLEVEL_RUNTIME);
    
    00109:         $this->exit->__invoke();
    
    00110:     }
    
  14. Neos\Flow\Http\RequestHandler::handleRequest()
    Packages/Framework/Neos.Flow/Classes/Core/Bootstrap.php
    00105: 
    
    00106:         $this->activeRequestHandler = $this->resolveRequestHandler();
    
    00107:         $this->activeRequestHandler->handleRequest();
    
    00108:     }
    
    00109: 
    
  15. Neos\Flow\Core\Bootstrap::run()
    Web/index.php
    00025: $context = \Neos\Flow\Core\Bootstrap::getEnvironmentConfigurationSetting('FLOW_CONTEXT') ?: 'Development';
    
    00026: $bootstrap = new \Neos\Flow\Core\Bootstrap($context, $composerAutoloader);
    
    00027: $bootstrap->run();