WPMU Captcha Fixed
Finally found the solution for the WPMU Captcha error where I keep getting “Please enter correct code” when trying to register for a new blog. This was fixed by adding just one code of line to your wp-signup.php file
Add the line
session_start();
after this
function validate_user_signup() {
$result = validate_user_form();
extract($result);
in the wp-signup.php so that it looks like this:
function validate_user_signup() {
$result = validate_user_form();
extract($result);
session_start();
Hope this will stop all those spammers for me.