登録とアクティベーションのリンクはこれまで正常に機能していました。アカウントをアクティベートするためのリンクをクリックすると、「接続に問題があります」と表示されます。
これは登録ファイルの関連コードです
{
//generate random code
$code = rand(11111111,99999999);
//send activation email
$to = $email;
$subject = "Activate your account";
$headers = "From: donotreply@reacheasy.co.uk";
$body = " Hello $fullname,\n\nUsername $username,\n\n Password $password ,\n\nYou registered and need to activate your account, n\nPlease keep this email safe as it contains your password . Click the link below or paste it into the URL bar of your browser\n\nhttp://reacheasy.co.uk/activate.php?code=$code\n\nThanks!";
これはアクティベーションファイルです
<?php
include 'include/global.php';
$code = $_GET['code'];
if (!$code)
echo "No code supplied";
else
{
$check = mysql_query("SELECT * FROM reusers WHERE code='$code' AND active='1'");
//echo "SELECT * FROM users WHERE code='$code' AND active='1'";
if (mysql_num_rows($check)==1)
echo "You have already activated your account";
else
{
$activate = mysql_query("UPDATE reusers SET active='1' WHERE code='$code'");
echo "Your account has been activated!<a href='index.php'>Return to login page</a>";
}
}
?>
見てくれてありがとう