If I click to "Chat Messages" Navigation link, then I get error mesage:

PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'szcom.drupalchat_msg' doesn't exist: SELECT u.name as name, g.uid as uid, g.message as message, g.TIMESTAMP as timestamp...

Because I use "dr_" prefix for all drupal tables, then my table is "dr_drupalchat_msg". Please change the code to use prefix also in this function.

Comments

Szaki’s picture

In drupalchat.module row 1061 please change:
FROM drupalchat_msg t1
to
FROM {drupalchat_msg} t1

Than this will work fine!

darklrd’s picture

Version: 7.x-1.0-beta19 » 7.x-1.x-dev
Status: Active » Fixed

Fixed in latest release.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.