File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
.. index ::
2
2
single: Sessions, sessions directory
3
3
4
- Configuring the Directory where Sessions Files are Saved
4
+ Configuring the Directory Where Sessions Files are Saved
5
5
========================================================
6
6
7
7
By default, Symfony stores the session data in files in the cache
8
- directory `" %kernel.cach_dir%/sessions" `. This means that when you clear
8
+ directory `` %kernel.cach_dir%/sessions ` `. This means that when you clear
9
9
the cache, any current sessions will also be deleted.
10
10
11
11
.. note ::
@@ -60,8 +60,8 @@ session directory to ``app/sessions``:
60
60
// app/config/config.php
61
61
$container->loadFromExtension('framework', array(
62
62
'session' => array(
63
- 'handler-id' => " session.handler.native_file") ,
64
- 'save-path' => " %kernel.root_dir%/sessions") ,
63
+ 'handler-id' => ' session.handler.native_file' ,
64
+ 'save-path' => ' %kernel.root_dir%/sessions' ,
65
65
),
66
66
));
67
67
You can’t perform that action at this time.
0 commit comments