· 8 years ago · Dec 14, 2017, 12:36 PM
1Please contact your web host and ask them to run this query on your database(or you could run it too if you're familiar with this, you can go to your cPanel -> phpMyAdmin -> your database -> SQL and run it there:
2
3CREATE TABLE `wordpress.et_social_stats` (
4`id` mediumint(9) NOT NULL,
5 `sharing_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
6 `network` varchar(20) NOT NULL,
7 `action` varchar(10) NOT NULL,
8 `post_id` bigint(20) NOT NULL,
9 `ip_address` varchar(45) NOT NULL,
10 `media_url` varchar(2083) NOT NULL,
11 `location` varchar(20) NOT NULL
12);
13
14This was probably a bug in one of our older versions and once the table wasn't created, the only way to get it back was to manually create it. We have an on-going issue with this and should be fixed pretty soon, to make sure the table exists.
15
16Let me know the result please.
17
18Thanks!