| Server IP : 172.67.187.206 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/news/datacenter/admin/core/ |
Upload File : |
<?php
session_start();
require_once "../config.php";
$activation_code = filter_input(INPUT_GET, 'activation_code', FILTER_SANITIZE_STRING);
if (!$activation_code)
{
header("Location: ../index.php?msg=error_activation_code");
exit();
}
$query = "SELECT user_id FROM ".DB_PREFIX."users_extra WHERE name = 'activation_code' AND value = ? LIMIT 1";
$stmt = $conn->prepare($query);
$stmt->bindParam(1, $activation_code);
$stmt->execute();
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$user_id = $row['user_id'];
$exist_code = $stmt->rowCount();
if($exist_code==1)
{
// update password
$query = "UPDATE ".DB_PREFIX."users SET active = 1, email_verified = 1 WHERE user_id = ? LIMIT 1";
$stmt = $conn->prepare($query);
$stmt->bindParam(1, $user_id, PDO::PARAM_INT);
$stmt->execute();
// remove activation code
$query = "DELETE FROM ".DB_PREFIX."users_extra WHERE name = 'activation_code' AND user_id = ?";
$stmt = $conn->prepare($query);
$stmt->execute([$user_id]);
header("Location: ../index.php?msg=user_active");
exit;
}
else
{
header("Location: ../index.php?msg=invalid_activation_code");
exit;
}
exit;