The reason you are having problems with logins and captcha's are not working etc is on this new server you don't have globals enabled as it is a security risk.
which means either you can the missing $_POST's and $_GET's in manually: eg:
$name = $_POST['name'];
$name = $_GET['name'];
(the word "name" has to be changed to the required value)
or alternatively here is a fix to get globals working again:
which means either you can the missing $_POST's and $_GET's in manually: eg:
$name = $_POST['name'];
$name = $_GET['name'];
(the word "name" has to be changed to the required value)
or alternatively here is a fix to get globals working again:
Comment