Resource icon

Unmaintained Conversation Improvements by Xon 1.3.15

No permission to download
XF2 version

Q. Installing fails with a 504 error
A. Please manually add the requires columns:
Code:
ALTER TABLE `xf_conversation_message`
  ADD COLUMN `_likes` INT UNSIGNED NOT NULL DEFAULT 0,
  ADD COLUMN `like_users` BLOB,
  ADD COLUMN `edit_count` int not null default 0,
  ADD COLUMN `last_edit_date` int not null default 0,
  ADD COLUMN `last_edit_user_id` int not null default 0;
ALTER TABLE `xf_conversation_master`
  ADD COLUMN `conversation_edit_count` int not null default 0,
  ADD COLUMN `conversation_last_edit_date` int not null default 0,
  ADD COLUMN `conversation_last_edit_user_id` int not null default 0;
Top Bottom