You must create the session table, if it doesn't exist, you'll get an
error.

CREATE TABLE `session_storage` (
  `session_id` varchar(255) collate latin1_general_ci NOT NULL,
  `session_data` longtext collate latin1_general_ci NOT NULL,
  `session_time` bigint(20) NOT NULL,
  PRIMARY KEY  (`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

In the factories.yml, you can specify the table, and the column name
you want to use ...

all:
  storage:
    class: sfMySQLSessionStorage
    param:
      database: propel
      session_name: symfony
      db_table: session_storage
      db_data_col: session_data
      db_id_col: session_id
      db_time_col: session_time


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to