I am having the same problem with the jetpack stats. My website http://articlehack.com/ was showing stats before i update wordpress. But now its not working now. I have checked another my friends website but it does not have any problem. I have tried everything>.. i have deleted and re installed the plugin. I deleted recently added plugin. But no use at all… Please help me…..
most probably its your plugin problem…. My website article hack uncounted a the same problem and i resolved it by deleting the newly installed plugin… or it might cause by some seo plugin that changes perma links.
You can move the wp-content directory to a different location, which essentially renames it.
First, in your wp-config.php file, add this:
define( ‘WP_CONTENT_DIR’, $_SERVER[‘DOCUMENT_ROOT’] . ‘/folder/path/to/new/dir’ );
And second, also in wp-config.php, add this:
define( ‘WP_CONTENT_URL’, ‘http://yoursite.com/folder/path/to/new/dir’);
You can read more about changing the wp-content dir on the Codex.