Browse Source

Switch to file as default session driver.

Taylor Otwell 10 years ago
parent
commit
7fb808f2fa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/config/session.php

+ 2 - 2
app/config/session.php

@@ -11,12 +11,12 @@ return array(
 	| 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',
 
 	/*
 	|--------------------------------------------------------------------------