We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f094237 commit adc57beCopy full SHA for adc57be
cookbook/session/sessions_directory.rst
@@ -31,6 +31,7 @@ to store session data. This is because of the following configuration:
31
http://symfony.com/schema/dic/symfony/symfony-1.0.xsd"
32
>
33
<framework:config>
34
+ <!-- handler_id set to null will use default session handler from php.ini -->
35
<framework:session handler-id="null" />
36
</framework:config>
37
</container>
@@ -40,6 +41,7 @@ to store session data. This is because of the following configuration:
40
41
// app/config/config.php
42
$container->loadFromExtension('framework', array(
43
'session' => array(
44
+ // handler_id set to null will use default session handler from php.ini
45
'handler-id' => null,
46
),
47
));
0 commit comments