Several minutes ago I updated my Google Analytics Dashboard plugin and all pages of my blog went dead, the only thing that was displayed was: “Please open this page in Admin panel only”
After a quick investigation I found out that you can fix this quick and dirty by editing gad-admin-options.php and comment out Line 34:
function __construct() { if( !is_admin() ){ //The following line kills your blog :) //die( "Please open this page in the Admin panel only." ); } }
It is not much of a solution but if you’re too lazy to load their files and go through the hooks to fix the wrong one it is good enough.