Roundcube Community Forum

 

Just installed roundcube and got red error box upon logging in

Started by rhopek, June 16, 2011, 01:04:34 PM

Previous topic - Next topic

rhopek

It was at the top of the screen and went away after a few seconds. It said to check the error log.

Log shows:

---
[14-Jun-2011 00:56:06] MDB2 Error: no such table (-18): _doQuery: [Error message: Could not execute statement]
[Last executed query: PREPARE mdb2_statement_mysql_1a136012952d03bebf9919e65b19b8c741b840b4b FROM 'SELECT vars, ip, UNIX_TIMESTAMP(changed) AS changed FROM session WHERE sess_id = ?']
[Native code: 1146]
[Native message: Table 'roundcubemail.session' doesn't exist]

[14-Jun-2011 00:56:06 -0400]: DB Error: _doQuery: [Error message: Could not execute statement]
[Last executed query: PREPARE mdb2_statement_mysql_1a136012952d03bebf9919e65b19b8c741b840b4b FROM 'SELECT vars, ip, UNIX_TIMESTAMP(changed) AS changed FROM session WHERE sess_id = ?']
[Native code: 1146]
[Native message: Table 'roundcubemail.session' doesn't exist]
 in /opt/roundcubemail-0.5.3/program/include/rcube_mdb2.php on line 268 (GET /webmail/)
---

I have verified that table does exist:

mysql> show tables;
+-------------------------+
| Tables_in_roundcubemail |
+-------------------------+
| cache                   |
| contactgroupmembers     |
| contactgroups           |
| contacts                |
| identities              |
| messages                |
| session                 |
| users                   |
+-------------------------+
8 rows in set (0.00 sec)


I'm using MySQL 5.5.

Any thoughts?

SKaero

Does the mysql user have read/write capability for the session table?

chinawholesale1314