From 282350d65625f56faed819a8e713da84342a642a Mon Sep 17 00:00:00 2001 From: Milos Stojanovic Date: Sun, 15 Mar 2020 11:03:26 +0100 Subject: [PATCH] Doc fix port for mysql --- docs/configuration/session.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration/session.md b/docs/configuration/session.md index 55d135c..ac5147e 100644 --- a/docs/configuration/session.md +++ b/docs/configuration/session.md @@ -43,7 +43,7 @@ Then, open `configuration.php` and update Session handler to: 'config' => [ 'handler' => function () { $handler = new \Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler( - 'mysql://root:password@localhost:3360/filegator' + 'mysql://root:password@localhost:3306/filegator' ); return new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage([], $handler); @@ -82,7 +82,7 @@ For example you can pass `cookie_lifetime` parameter to extend default session l 'config' => [ 'handler' => function () { $handler = new \Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler( - 'mysql://root:password@localhost:3360/filegator' + 'mysql://root:password@localhost:3306/filegator' ); return new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage([