Hello all.
I just updated my WordPress to the latest version 1.5.1.2 and my Exhibit photo gallery is not working due to this error:
Fatal error: Call to undefined function: get_currentuserinfo() in /home/forcefor/public_html/wp/wp-content/plugins/exhibit10.php on line 205
I checked line 205 and it was: get_currentuserinfo();
I'm not sure what that means nor how to fix it. Please help. Thank you in advance.
Try this:
http://wordpress.org/support/topic/33189?page=1#post-187843
There are some other ways of fixing in that thread too I think.
Thank you.
By adding these lines before: get_currentuserinfo()
$incfile = 'wp-includes/pluggable-functions.php';
$c=0;
while(!is_file($incfile))
{
$incfile = '../' . $incfile;
$c++;
if($c==30) {
echo "Could not find pluggable-functions.php.";
exit;
}
}
require_once($incfile);
Thanks IanD