Jonas Birkelöf

Results 6 comments of Jonas Birkelöf

> > > @umashankarpandey You gotta change the code from mysql.sessions.php to this: > https://github.com/dominicklee/PHP-MySQL-Sessions/blob/5fc1be65f375325a30ad452383270802c6c91ac3/mysql.sessions.php > > Then it works. fixed it for me. ;) Can confirm that this fix...

I solved this by adding this code at the end of the constructor: ```$this->_gc(10, 180)``` and this in the _gc($max, $maxLoggedIn) method: ``` $old = time() - $max; $oldLoggedIn =...

Same for me with version 0.4.1

Is there any fix for this? I can not use our internal devops environment with portainer.

@artyuum Did you ever find a solution for this? :)

It's not a fix, just a work-around that I settled with for now. ```php $Router->mount('/users', function () use ($Router) { $Router->before('GET', '*(.*)', [Auth::class, 'validate']); $Router->get('/', [UserController::class, 'index']); $Router->get('/(\d+)', [UserController::class, 'show']);...