automatic_addressbook
automatic_addressbook copied to clipboard
INSTALL process is not correctly explained...
If the roundcube database has a prefix, it must be user in the sql statement.
You said in INSTALL file:
- Execute the relevant SQL/
.initial.sql script on your database (process depends on your DB engine) If your Roundcube Database starts with a prefix set the prefix also in the SQL Statement: "REFERENCES PREFIX_users
(user_id
)"
but it should be:
- Execute the relevant SQL/
.initial.sql script on your database (process depends on your DB engine) If your Roundcube Database starts with a prefix set the prefix also in the SQL Statement: "CREATE TABLE PREFIX_collected_contacts
(" and "REFERENCESPREFIX_users
(user_id
)"
@mtregael thanks for this :)