From 7fb808f2fa5444cbeb40ef7996bc138d29e89cef Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 26 Oct 2013 22:28:55 -0500 Subject: [PATCH] Switch to file as default session driver. --- app/config/session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config/session.php b/app/config/session.php index 2ae89fbf..5c1d2779 100644 --- a/app/config/session.php +++ b/app/config/session.php @@ -11,12 +11,12 @@ | requests. By default, we will use the lightweight native driver but | you may specify any of the other wonderful drivers provided here. | - | Supported: "native", "cookie", "database", "apc", + | Supported: "file", "cookie", "database", "apc", | "memcached", "redis", "array" | */ - 'driver' => 'native', + 'driver' => 'file', /* |--------------------------------------------------------------------------