Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
Silex
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
Silex
Commits
a9552481
Commit
a9552481
authored
Nov 08, 2012
by
lukestokes
Committed by
Fabien Potencier
Nov 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor session documentation change.
parent
11309518
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
doc/providers/session.rst
doc/providers/session.rst
+14
-0
No files found.
doc/providers/session.rst
View file @
a9552481
...
@@ -83,3 +83,17 @@ authenticates a user and creates a session for him::
...
@@ -83,3 +83,17 @@ authenticates a user and creates a session for him::
return "Welcome {$user['username']}!";
return "Welcome {$user['username']}!";
});
});
Custom Session Configurations
-----------------------------
If your system is using a custom session configuration (such as a redis handler
from a PHP extension) then you need to disable the NativeFileSessionHandler by
setting ``session.storage.handler`` to null. You will have to configure the
``session.save_path`` ini setting yourself in that case.
.. code-block:: php
$app['session.storage.handler'] = null;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment