Hi All,

I know this thread was started a while ago, but I recently ran into the same problem...

My solution and still able to use the module is:

In the file YOUR-ADMIN/includes/functions/extra_functions/recaptcha_functions.php you will find at the bottom of the file this:

Code:
if (basename($_SERVER['PHP_SELF']) == 'index.php')
{
	echo $recaptcha->output();
}
Just simply comment it out (would not delete, just in case) like so:

Code:
/*if (basename($_SERVER['PHP_SELF']) == 'index.php')
{
	echo $recaptcha->output();
}*/
I think this tries to load the recaptcha on index.php of admin which is causing the problem.

Hope this helps anyone else.

Jay