Thread C::A::Plugin::Session: Don't know where to store the id... (2 answers)
Opened by pktm at 2005-08-02 01:38

esskar
 2005-08-02 03:36
#5362 #5362
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
Code: (dl )
1
2
3
4
5
6
7
$self->session_config(
CGI_SESSION_OPTIONS => [
"driver:MySQL;id:Incr",
$self->query(),
{ Handle => $self->param('mydbh') }
],
);


ich glaub der ; war zu viel
und du hast auch die tabelle angelegt?

[sql]CREATE TABLE sessions (
id CHAR(32) NOT NULL UNIQUE,
a_session TEXT NOT NULL
);
[/sql]

View full thread C::A::Plugin::Session: Don't know where to store the id...