I have facing following error in php error log. How to solve this following problem?
PHP Fatal error: Call to a member function get() on a non-object in ...\wp-includes\cache.php on line 93
I have facing following error in php error log. How to solve this following problem?
PHP Fatal error: Call to a member function get() on a non-object in ...\wp-includes\cache.php on line 93
I'm also seeing this in my error logs. The function referenced is very short:
function wp_cache_get($id, $flag = '') {
global $wp_object_cache;
return $wp_object_cache->get($id, $flag);
}
I don't know what is wrong. Are you running wp-supercache? That is what I'm using so it could be a subtle problem.
It doesn't seem to me that anything is broken about the site as a result of this error, which is strange.
This topic has been closed to new replies.