You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2025. It is now read-only.
Hello, I'm getting memory exhausted errors with this library in production. I've tried increasing the allowed memory usage, but 400MB is more than I am comfortable with.
PHP Fatal error: Allowed memory size of 419430400 bytes exhausted (tried to allocate 33554432 bytes) in .../user.php on line 142
PHP Fatal error: Allowed memory size of 419430400 bytes exhausted (tried to allocate 33554432 bytes) in .../user.php on line 141
PHP Fatal error: Allowed memory size of 419430400 bytes exhausted (tried to allocate 33554432 bytes) in .../vendor/birke/rememberme/src/Authenticator.php on line 75
The respective lines in .../user.php are:
135. $storagePath = settings::user_tokens_path;
136. if(!is_writable($storagePath) || !is_dir($storagePath)) {
137. die("'$storagePath' does not exist or is not writable by the web server.
138. To run the example, please create the directory and give it the
139. correct permissions.");
140. }
141. $storage = new FileStorage($storagePath);
142. $rememberMe = new Authenticator($storage);