Can someone please help me?
I am using wpmu 2.6.5
I am trying to get this plugin to work:
"blog topics"
http://wordpress.org/extend/plugins/blog-topics/
I followd the installation instuctions, but the tables are not created in the database. And when I add a new topic, it does not show under "Blog Topics Management".
There are 2 tables which should be created automatically, but it's just not happenning.
So I created the 2 tables in phpmyadmin, I used this query for cets_topics:
CREATE TABLE cets_topics (
id int(11) unsigned NOT NULL auto_increment,
topic_name VARCHAR(55) NOT NULL default '',
active int(1) unsigned NOT NULL default 1,
UNIQUE KEY id (id)
)
----------------
And I used this one for cets_topics_relationships:
CREATE TABLE cets_topics_relationships (
blog_id int(11) unsigned NOT NULL,
topic_id int(11) unsigned NOT NULL,
UNIQUE KEY id (blog_id, topic_id)
)
.
But still, no topic is added and the tables are empty even if I add topics.
Help is badly needed
P.s I had previously installed that plugin after a fresh wpmu installation, but after I added some other plugins I went stupidly to phpmyadmin and just dropped the 2 tables cose I wanted to install the plugin again ! I which I never did that :(