1064 error with CodeIgniter in ci_sessions table 1064 error with CodeIgniter in ci_sessions table codeigniter codeigniter

1064 error with CodeIgniter in ci_sessions table


You are missing the session table name

update TABLE_NAME set ...

Is $this->sess_table_name properly set?

Check your config file for:

$config['sess_table_name'] = 'ci_sessions';

Also, check the manual:http://www.codeigniter.com/userguide3/libraries/sessions.html


Add this to Check your config file:

$config['sess_table_name'] = 'ci_sessions';$config['sess_use_database']    = FALSE;

Hope this helping...