How to Setup sfPDOSessionStorage
Setting up sfPDOSessionStorage is a fairly simple matter to make sure that sessions exist on a setup with multiple web-heads. Add the following code to your app//config/factories.yml file: all: storage: class: sfPDOSessionStorage param: db_table: session # table storing the sessions database: propel # database connection to use # Optional parameters db_id_col: sess_id # column storing [...]