New to Translating WordPress? Read through our Translator Handbook to get started. Hide
Prio | Original string | Translation | — |
---|---|---|---|
↑ | Use native PHP sessions and stay horizontally scalable. Better living through superior technology. | Verwende native PHP-Sessions und bleibe horizontal skalierbar. Besser leben durch überlegene Technologie. | Details |
Original current
Use native PHP sessions and stay horizontally scalable. Better living through superior technology.
You have to log in to edit this translation. Meta |
|||
↑ | WordPress Native PHP Sessions | WordPress Native PHP Sessions | Details |
Original currentMeta |
|||
To override this use the <code>pantheon_session_expiration</code> filter before the WordPress Native PHP Sessions plugin is loaded. For example a small Must-use plugin (a.k.a. mu-plugin) could contain: | You have to log in to add a translation. | Details | |
Original untranslated
To override this use the <code>pantheon_session_expiration</code> filter before the WordPress Native PHP Sessions plugin is loaded. For example a small Must-use plugin (a.k.a. mu-plugin) could contain:
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
By default the session lifetime is set to 0, which is until the browser is closed. | You have to log in to add a translation. | Details | |
Original untranslated
By default the session lifetime is set to 0, which is until the browser is closed.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
Configuration | You have to log in to add a translation. | Details | |
Original untranslatedMeta |
|||
See <a href="https://github.com/pantheon-systems/wp-native-php-sessions/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> for information on contributing. | You have to log in to add a translation. | Details | |
Original untranslated
See <a href="https://github.com/pantheon-systems/wp-native-php-sessions/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> for information on contributing.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
This mu-plugin will load WP Native PHP Sessions before all other plugins, while letting you still use the WordPress plugin updater to keep the plugin up-to-date. | Dieses mu-Plugin lädt WP Native PHP Sessions vor allen anderen Plugins, während du weiterhin den WordPress-Plugin-Updater verwenden kannst, um das Plugin auf dem neuesten Stand zu halten. | Details | |
Original current
This mu-plugin will load WP Native PHP Sessions before all other plugins, while letting you still use the WordPress plugin updater to keep the plugin up-to-date.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
To fix, create a new file at <code>wp-content/mu-plugins/000-loader.php</code> and include the following: | Erstelle eine neue Datei in <code>wp-content/mu-plugins/000-loader.php</code> und füge die folgenden Zeilen ein, um dieses Problem zu beheben: | Details | |
Original current
To fix, create a new file at <code>wp-content/mu-plugins/000-loader.php</code> and include the following:
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
If you see an error like "Fatal error: session_start(): Failed to initialize storage module:" or "Warning: ini_set(): A session is active.", then you likely have a plugin that is starting a session before WP Native PHP Sessions is loading. | Wenn du einen Fehler wie "Fatal error: session_start(): Failed to initialize storage module:" oder "Warning: ini_set(): A session is active." erhältst, dann hast du wahrscheinlich ein Plugin, das eine Session startet, bevor WP Native PHP Sessions geladen wird. | Details | |
Original current
If you see an error like "Fatal error: session_start(): Failed to initialize storage module:" or "Warning: ini_set(): A session is active.", then you likely have a plugin that is starting a session before WP Native PHP Sessions is loading.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
<a href="https://travis-ci.org/pantheon-systems/wp-native-php-sessions"></a> <a href="https://circleci.com/gh/pantheon-systems/wp-native-php-sessions/tree/master"></a> | <a href="https://travis-ci.org/pantheon-systems/wp-native-php-sessions"></a> <a href="https://circleci.com/gh/pantheon-systems/wp-native-php-sessions/tree/master"></a> | Details | |
Original current
<a href="https://travis-ci.org/pantheon-systems/wp-native-php-sessions"></a> <a href="https://circleci.com/gh/pantheon-systems/wp-native-php-sessions/tree/master"></a>
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
Troubleshooting | Problembehandlung | Details | |
Original currentMeta |
|||
However, if you intend to scale your application, local tempfiles are a dangerous choice. They are not shared between different instances of the application, producing erratic behavior that can be impossible to debug. By storing them in the database the state of the sessions is shared across all application instances. | Wenn du beabsichtigst, deine Anwendung zu skalieren, sind lokale temporäre Dateien eine gefährliche Wahl. Sie werden von den verschiedenen Instanzen der Anwendung nicht gemeinsam genutzt, was zu einem erratischen Verhalten führt, dass das Debuggen erschweren kann. Durch ihre Speicherung in der Datenbank wird der Zustand der Sitzungen von allen Anwendungsinstanzen gemeinsam genutzt. | Details | |
Original current
However, if you intend to scale your application, local tempfiles are a dangerous choice. They are not shared between different instances of the application, producing erratic behavior that can be impossible to debug. By storing them in the database the state of the sessions is shared across all application instances.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
PHP's fallback default functionality is to allow sessions to be stored in a temporary file. This is what most code that invokes sessions uses by default, and in simple use-cases it works, which is why so many plugins do it. | Die Fallback-Standardfunktionalität von PHP besteht darin, dass Sitzungen in einer temporären Datei gespeichert werden können. Das ist es, was der meiste Code, der Sessions aufruft, standardmäßig verwendet, und in einfachen Anwendungsfällen funktioniert, weshalb so viele Plugins dies auch nutzen. | Details | |
Original current
PHP's fallback default functionality is to allow sessions to be stored in a temporary file. This is what most code that invokes sessions uses by default, and in simple use-cases it works, which is why so many plugins do it.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
This implements the built-in PHP session handling functions, rather than introducing anything custom. That way you can use built-in language functions like the <code>$_SESSION</code> superglobal and <code>session_start()</code> in your code. Everything else will "just work". | Dieses Plugin implementiert die eingebauten PHP-Sitzungsbehandlungsfunktionen, anstatt etwas Benutzerdefiniertes einzuführen. Auf diese Weise kannst du die eingebaute Sprachfunktionen wie <code>$_SESSION</code> superglobal und <code>session_start()</code> in deinem Code verwenden. Alles andere funktioniert dann von alleine. | Details | |
Original current
This implements the built-in PHP session handling functions, rather than introducing anything custom. That way you can use built-in language functions like the <code>$_SESSION</code> superglobal and <code>session_start()</code> in your code. Everything else will "just work".
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
Why store them in the database? | Warum die Sessions in der Datenbank speichern? | Details | |
Original current
Why store them in the database?
CommentFound in faq header. You have to log in to edit this translation. Meta |
Export as
Comment
Short description.