Undefined index in wassup/wassup.php line 339
Hi all,
I installed the word press wassup plugin so I can look at some statistics on my blog. Unfortunately, as soon as I installed the plugin I was greeted with the above error message. It turned out, in that file, there is a line of code that tries to access a property and then use it, but that property was not set on the particular page I was viewing. To solve it simply substitute this line
$plugin_page = $_GET['page'];
with
if (!isset($_GET['page']))
{
//If not isset -> set with dumy value
$plugin_page = "none";
}
else
{
$plugin_page = $_GET['page'];
}
Enjoy and post your comments!
Categories
Archives
Software Quotes
??Software Blogs
February 2012 M T W T F S S « Nov 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29





