I use subscribe to topic on my forum but I see on log error a lot of error caused by (i think) subscribe to topic.
This is mi log file
bbPress ShowcasebbPress Showcase
bbPress Showcase » bbPress Chat
-
Posted 1 year ago #
-
From that I'd imagine the database table never got created.
Didn't you have the same problem with bb-attachments or was that someone else?
Posted 1 year ago # -
mmm no, I don't use bb-attachments.
I try to subscribe a topic but if I go to profile-subcribe is emptyPosted 1 year ago # -
Yes that is because the table doesn't exist so no entries can be made.
I have no idea why it's failing on your server, the activation routine must not be working.
If you have phpmyadmin you can make the table manually
CREATE TABLE IF NOT EXISTS subscribe_to_topic ( user int(10) UNSIGNED NOT NULL default '0', topic int(10) UNSIGNED NOT NULL default '0', post int(10) UNSIGNED NOT NULL default '0', last int(10) UNSIGNED NOT NULL default '0', time int(10) UNSIGNED NOT NULL default '0', type tinyint UNSIGNED NOT NULL default '0', PRIMARY KEY (user,topic), INDEX (user), INDEX (topic) ) CHARSET utf8 COLLATE utf8_general_ciPosted 1 year ago # -
perfect
thank you very much!
can I ask another thing?
I use nicer permalink and upload avatar, the permalink of my forum is perfect but the avatar not appear, if I deactive nicer permalink the avatar appear.
Where is the problem for you?kikko088
Posted 1 year ago # -
Nicer permalink probably messes with a bunch of things, I don't use it.
It might be changing the path to the avatar which is why you don't see it.
Posted 1 year ago #
RSS feed for this topic
Post a reply to “subscribe to topic, log error”
You must log in to post.