For some reason, when I activated the Popular Post Plugin by Alex King, there is some error stating that wp_ak_popularity table does not exist. When I check at phpmyadmin, I only found the table wp_ak_popularity_options which is a slightly different table. I am not sure why this exist and I belief no other people is facing this when I did a search at the big G and Wordpress forum.
I can’t find any solution out there, therefore I decided to create my own table. All you need to create you table is to login into you phpmyadmin account, click on SQL tab and paste the following code:-
CREATE TABLE IF NOT EXISTS wp_ak_popularity (
post_id int(11) NOT NULL default ‘0′,
total int(11) NOT NULL default ‘0′,
feed_views int(11) NOT NULL default ‘0′,
home_views int(11) NOT NULL default ‘0′,
archive_views int(11) NOT NULL default ‘0′,
category_views int(11) NOT NULL default ‘0′,
single_views int(11) NOT NULL default ‘0′,
comments int(11) NOT NULL default ‘0′,
pingbacks int(11) NOT NULL default ‘0′,
trackbacks int(11) NOT NULL default ‘0′,
last_modified datetime NOT NULL default ‘0000-00-00 00:00:00′,
KEY post_id (post_id)
) TYPE=MyISAM;
Hopefully it will solve some of your problem.
Popularity: 27% [?]
| If you enjoyed this post, make sure subscribe to my RSS feed! or your could read this blog via Email Subscription. |
You Should Also Check Out This Post:
- Blogs with Top Commentators Wordpress plugin (56)
- Jaiku Invites (32)
- Remove Text Link and Request Reconsideration to gain PR (17)
- Google Pagerank Movement again (13)
- Do not steal riceblogger dot com Feed! (13)
- Bad Grammar in Blogging does not exists (13)
- Successfully withdraw Adsense Earning from Western Union (11)
- Adsense via Western Union is Ready (11)
- I've Joined Entrecard (11)
- Google acquires Jaiku (9)



I am also facing the same problem. Tried hard but didn’t get any solution. Does above mentioned procedure helped you in getting the plugin working?