Last active
January 1, 2016 23:29
-
-
Save baptistedonaux/8216970 to your computer and use it in GitHub Desktop.
Comment déporter la session sous Symfony2.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config.yml | |
framework: | |
# … | |
session: | |
# La session sera déportée dans app/var/sessions/ | |
# N'oubliez pas de créer les deux dossiers, sinon Symfony2 n'arrivera pas à écrire dans votre répertoire | |
save_path: %kernel.root_dir%/var/sessions | |
# … |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment