File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 35
35
* :doc:` /cookbook/configuration/front_controllers_and_kernel`
36
36
* :doc:` /cookbook/configuration/external_parameters`
37
37
* :doc:` /cookbook/configuration/pdo_session_storage`
38
+ * (session) :doc:` /cookbook/session/mongodb_session_storage`
38
39
* :doc:` /cookbook/configuration/apache_router`
39
40
* :doc:` /cookbook/configuration/web_server_configuration`
40
41
* :doc:` /cookbook/configuration/configuration_organization`
41
- * :doc:` /cookbook/configuration/mongodb_session_storage`
42
42
43
43
* :doc:` /cookbook/console/index`
44
44
190
190
* :doc:` /cookbook/session/sessions_directory`
191
191
* :doc:` /cookbook/session/php_bridge`
192
192
* (configuration) :doc:` /cookbook/configuration/pdo_session_storage`
193
- * (configuration) :doc:` /cookbook/configuration /mongodb_session_storage`
193
+ * :doc:` /cookbook/session /mongodb_session_storage`
194
194
* :doc:` /cookbook/session/avoid_session_start`
195
195
196
196
* ** symfony1**
Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ need to change/add some parameters in the main configuration file:
30
30
mongo_client :
31
31
class : MongoClient
32
32
# if using a username and password
33
- arguments : [mongodb://%mongodb_username%:%mongodb_password%@%mongodb_host%:27017]
33
+ arguments : [" mongodb://%mongodb_username%:%mongodb_password%@%mongodb_host%:27017" ]
34
34
# if not using a username and password
35
- arguments : [mongodb://%mongodb_host%:27017]
35
+ arguments : [" mongodb://%mongodb_host%:27017" ]
36
36
session.handler.mongo :
37
37
class : Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler
38
- arguments : [@mongo_client, %mongo.session.options%]
38
+ arguments : [@mongo_client, " %mongo.session.options%" ]
39
39
40
40
.. code-block :: xml
41
41
@@ -168,4 +168,4 @@ From the `MongoDB shell`_:
168
168
db.session.ensureIndex( { "expireAt": 1 }, { expireAfterSeconds: 0 } )
169
169
170
170
.. _installed and configured a MongoDB server : http://docs.mongodb.org/manual/installation/
171
- .. _MongoDB shell : http://docs.mongodb.org/v2.2/tutorial/getting-started-with-the-mongo-shell/
171
+ .. _MongoDB shell : http://docs.mongodb.org/v2.2/tutorial/getting-started-with-the-mongo-shell/
You can’t perform that action at this time.
0 commit comments