I have the exact same Problem and I get the following Error in my log:
PHP Fatal error: Call to undefined function microtime_float() in [...]/wp-content/plugins/rssfeedchecker/RSSFeedCheckerUI.php on line 159, referer: [...]/wp-admin/link-manager.php?page=RSSFeedChecker
I now changed the 2 occurances of
microtime_float(true)
in RSSFeedCheckerUI.php to
microtime(true)
and now i get no errors anymore.
I also changed 3 more occrances in RSSFeedCheckerProcessor.php.
What should that microtime_float(true)
be anyway?
https://php.net/manual/en/function.microtime.php gives this code:
<?php
/**
* Simple function to replicate PHP 5 behaviour
*/
function microtime_float()
{
list($usec, $sec) = explode(” “, microtime());
return ((float)$usec + (float)$sec);
}
$time_start = microtime_float();
// Sleep for a while
usleep(100);
$time_end = microtime_float();
$time = $time_end – $time_start;
echo “Did nothing in $time seconds\n”;
?>
So this is due to using php5?
Something is wrong wih the plugin !