from FTP edit /wp-content/plugins/recently-popular/recently-popular.php
find this function: function recently_popular_record_hit()
//ERROR//$wpdb->query(“INSERT INTO $table(user_type
, post_id
) VALUES ($user_type, $post->ID);”);
It should be:
$wpdb->query(“INSERT INTO $table(user_type
, post_id
) VALUES ($user_type, $post->ID)”);