Universität Tübingen
Universitätsbibliothek
  • Home
  • About
    • About KeiBi
  • Language
    • English
    • Deutsch
Keilschrift­biblio­graphie online
  • Advanced Search
  • Search History
  • Search Tips

Copyright
Please choose an export format.
  • Export to RIS (Citavi, Zotero, etc.)
  • Export to EndNote
  • Export to BibTeX
  • Export to PPN_to_DA3
DFG
© 2026 Tübingen University Library
  • Imprint
  • Privacy statement
Drawer...
Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
fopen(/tmp/vufind_sessions/sess_pgnh9g1i7rsqj679cvrj5lm4uc): Failed to open stream: No space left on device
Whoops\Exception\ErrorException thrown with message "fopen(/tmp/vufind_sessions/sess_pgnh9g1i7rsqj679cvrj5lm4uc): Failed to open stream: No space left on device" Stacktrace: #5 Whoops\Exception\ErrorException in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:152 #4 fopen in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:152 #3 VuFind\Session\File:saveSession in /usr/local/vufind/module/VuFind/src/VuFind/Session/AbstractBase.php:186 #2 VuFind\Session\AbstractBase:write in [internal]:0 #1 session_write_close in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:240 #0 Laminas\Session\SessionManager:writeClose in [internal]:0
Application frames (0) All frames (6)
5
Whoops\Exception\ErrorException
…/module/VuFind/src/VuFind/Session/File.php152
4
fopen
…/module/VuFind/src/VuFind/Session/File.php152
3
VuFind\Session\File saveSession
…/module/VuFind/src/VuFind/Session/AbstractBase.php186
2
VuFind\Session\AbstractBase write
[internal]0
1
session_write_close
…/vendor/laminas/laminas-session/src/SessionManager.php240
0
Laminas\Session\SessionManager writeClose
[internal]0
Open: /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php
        foreach (glob($this->path . "/sess_*") as $filename) {
            if (filemtime($filename) + $maxlifetime < time()) {
                unlink($filename);
            }
        }
        return true;
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    protected function saveSession($sessId, $data): bool
    {
        $sessFile = $this->path . '/sess_' . $sessId;
        if ($handle = fopen($sessFile, "w")) {
            $return = false;
            // Lock the file for exclusive access to avoid issues with multiple
            // processes writing session simultaneously:
            if (flock($handle, LOCK_EX)) {
                $return = fwrite($handle, $data);
                // Make sure that there's no trailing data by truncating the file to
                // the correct length:
                ftruncate($handle, strlen($data));
                fflush($handle);
                flock($handle, LOCK_UN);
            }
            fclose($handle);
            if ($return !== false) {
                return true;
            }
        }
        // If we got this far, something went wrong with the file output...
        // It is tempting to throw an exception here, but this code is called
        // outside of the context of exception handling, so all we can do is
        // echo a message.
Open: /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php
        foreach (glob($this->path . "/sess_*") as $filename) {
            if (filemtime($filename) + $maxlifetime < time()) {
                unlink($filename);
            }
        }
        return true;
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    protected function saveSession($sessId, $data): bool
    {
        $sessFile = $this->path . '/sess_' . $sessId;
        if ($handle = fopen($sessFile, "w")) {
            $return = false;
            // Lock the file for exclusive access to avoid issues with multiple
            // processes writing session simultaneously:
            if (flock($handle, LOCK_EX)) {
                $return = fwrite($handle, $data);
                // Make sure that there's no trailing data by truncating the file to
                // the correct length:
                ftruncate($handle, strlen($data));
                fflush($handle);
                flock($handle, LOCK_UN);
            }
            fclose($handle);
            if ($return !== false) {
                return true;
            }
        }
        // If we got this far, something went wrong with the file output...
        // It is tempting to throw an exception here, but this code is called
        // outside of the context of exception handling, so all we can do is
        // echo a message.
Open: /usr/local/vufind/module/VuFind/src/VuFind/Session/AbstractBase.php
        // Anecdotal testing Today and Yesterday seems to indicate destroy()
        //   is called by the garbage collector and everything is good.
        // Something to keep in mind though.
        return true;
    }
 
    /**
     * Write function that is called when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    public function write($sessId, $data): bool
    {
        if ($this->writesDisabled) {
            return true;
        }
        return $this->saveSession($sessId, $data);
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    abstract protected function saveSession($sessId, $data): bool;
}
 
Open: [internal]
Open: /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php
     *
     * @return void
     */
    public function writeClose()
    {
        // The assumption is that we're using PHP's ext/session.
        // session_write_close() will actually overwrite $_SESSION with an
        // empty array on completion -- which leads to a mismatch between what
        // is in the storage object and $_SESSION. To get around this, we
        // temporarily reset $_SESSION to an array, and then re-link it to
        // the storage object.
        //
        // Additionally, while you _can_ write to $_SESSION following a
        // session_write_close() operation, no changes made to it will be
        // flushed to the session handler. As such, we now mark the storage
        // object isImmutable.
        $storage = $this->getStorage();
        if (! $storage->isImmutable()) {
            $_SESSION = $storage->toArray(true);
            session_write_close();
            $storage->fromArray($_SESSION);
            $storage->markImmutable();
        }
    }
 
    /**
     * Attempt to set the session name
     *
     * If the session has already been started, or if the name provided fails
     * validation, an exception will be raised.
     *
     * @param  string $name
     * @return SessionManager
     * @throws Exception\InvalidArgumentException
     */
    public function setName($name)
    {
        if ($this->sessionExists()) {
            throw new Exception\InvalidArgumentException(
                'Cannot set session name after a session has already started'
Open: [internal]

Environment & details:

empty
empty
empty
Key Value
ui standard
language en
KEIBI_SESSION pgnh9g1i7rsqj679cvrj5lm4uc
Key Value
__Laminas Array ( [_REQUEST_ACCESS_TIME] => 1787260926.8761 [_VALID] => Array ( [Laminas\Session\Validator\Id] => pgnh9g1i7rsqj679cvrj5lm4uc ) )
SessionState Laminas\Stdlib\ArrayObject Object ( [storage:protected] => Array ( [cookiePath] => / ) [flag:protected] => 2 [iteratorClass:protected] => ArrayIterator [protectedProperties:protected] => Array ( [0] => storage [1] => flag [2] => iteratorClass [3] => protectedProperties ) )
FlashMessenger Laminas\Stdlib\ArrayObject Object ( [storage:protected] => Array ( ) [flag:protected] => 2 [iteratorClass:protected] => ArrayIterator [protectedProperties:protected] => Array ( [0] => storage [1] => flag [2] => iteratorClass [3] => protectedProperties ) )
Key Value
REDIRECT_UNIQUE_ID aodv_knrXILfZwQr3_0wNwAAAJ4
REDIRECT_SCRIPT_URL /Record/KEI00116752/Export
REDIRECT_SCRIPT_URI https://keibi.uni-tuebingen.de/Record/KEI00116752/Export
REDIRECT_VUFIND_HOME /usr/local/vufind
REDIRECT_VUFIND_LOCAL_DIR /usr/local/vufind/local/tuefind/instances/keibi
REDIRECT_VUFIND_ENV development
REDIRECT_VUFIND_CACHE_DIR /usr/local/vufind/local/tuefind/instances/keibi/cache
REDIRECT_VUFIND_LOCAL_MODULES TueFindSearch,TueFind,IxTheo,KeiBi
REDIRECT_VUFIND_APPLICATION_PATH /usr/local/vufind
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI keibi.uni-tuebingen.de
REDIRECT_STATUS 200
UNIQUE_ID aodv_knrXILfZwQr3_0wNwAAAJ4
SCRIPT_URL /Record/KEI00116752/Export
SCRIPT_URI https://keibi.uni-tuebingen.de/Record/KEI00116752/Export
VUFIND_HOME /usr/local/vufind
VUFIND_LOCAL_DIR /usr/local/vufind/local/tuefind/instances/keibi
VUFIND_ENV development
VUFIND_CACHE_DIR /usr/local/vufind/local/tuefind/instances/keibi/cache
VUFIND_LOCAL_MODULES TueFindSearch,TueFind,IxTheo,KeiBi
VUFIND_APPLICATION_PATH /usr/local/vufind
HTTPS on
SSL_TLS_SNI keibi.uni-tuebingen.de
HTTP_ACCEPT */*
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_COOKIE ui=standard; language=en; KEIBI_SESSION=pgnh9g1i7rsqj679cvrj5lm4uc
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_HOST keibi.uni-tuebingen.de
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin
SERVER_SIGNATURE <address>Apache/2.4.58 (Ubuntu) Server at keibi.uni-tuebingen.de Port 443</address>
SERVER_SOFTWARE Apache/2.4.58 (Ubuntu)
SERVER_NAME keibi.uni-tuebingen.de
SERVER_ADDR 134.2.5.89
SERVER_PORT 443
REMOTE_ADDR 216.73.216.86
DOCUMENT_ROOT /usr/local/vufind/public
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /usr/local/vufind/public
SERVER_ADMIN [no address given]
SCRIPT_FILENAME /usr/local/vufind/public/index.php
REMOTE_PORT 43950
REDIRECT_URL /Record/KEI00116752/Export
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /Record/KEI00116752/Export
SCRIPT_NAME /index.php
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1787260926.8556
REQUEST_TIME 1787260926
empty
0. Whoops\Handler\PrettyPageHandler