電子メールがこのエラーメッセージをアクティブ化すると、「アカウントのアクティブ化で問題が発生しました」
私のアクティベートコードに問題はありますか..??? 以下にコードを示します..
「アクティベート.php」
<?php 
    include 'core/init.php';
    logged_in_redirect();
    include 'includes/overall/header.php';
    if (isset($_GET['success']) === true && empty($_GET['success']) === true) {
    ?>
        <h2>Thanks, we've activated your account....</h2>
        <p>You're free to Log in!</p>
    <?php
    } else if (isset($_GET['email'], $_GET['email_code']) === true) {
        $email      = trim($_GET['email']);
        $email_code   = trim($_GET['email_code']);
        if (email_exists($email) === false) {
            $errors[] = 'Oops, something went wrong and we could\'t find that email address';
        } else if (activate($email, $email_code) === false) {
            $errors[] = 'We had problems activating your account';
        }
        if (empty($errors) === false) {
        ?>
            <h2>Ooops...</h2>
        <?php
            echo output_errors($errors);        
        } else {
            header('Location: activate.php?success');
            exit();
        }
    } else {
        header('Location: index.php');
        exit();
    }
    include 'includes/overall/footer.php'; 
?>
以下の電子メール リンク コード: * 'user.php' *