10-22-2016, 02:41 PM
Hmm....well that's not good. If you can go into phpmyadmin into the users table and take your admin account, and set permissions to 1 , email verified = 1 , and active = 1
If that doesn't work, dump this patch as a php file in your root, run it, and it will fix it.
<?php
require_once 'users/init.php';
$fields = array(
'active' => 1,
'email_verified' => 1,
'permissions' = 1
);
$db->update('users',1,$fields);
bold("User account 1 SHOULD be unlocked now");
?>
From there, we can figure out your problem.
If that doesn't work, dump this patch as a php file in your root, run it, and it will fix it.
<?php
require_once 'users/init.php';
$fields = array(
'active' => 1,
'email_verified' => 1,
'permissions' = 1
);
$db->update('users',1,$fields);
bold("User account 1 SHOULD be unlocked now");
?>
From there, we can figure out your problem.