Grapefruit ASE Errors!

VaginaMuncher

Chilling with me bitch Fiona
Mar 17, 2013
447
58
Okay, So I have been doing a huge RevCms re-color originally which then I made into a project, Such as I've coded lottery and vault and special games, But I changed over to bcstorm and now my ase wont work, I get to login then it says incorrect access level, Yet i'm rank 7....

Any help?
 

Obey

You just played yourself.
Nov 23, 2013
250
29
If you're still wondering, here you go:
Find this or something similar and change the 7 to a 6 or lower, whatever you want it to be accessed at.
PHP:
final public function loginHK()
    {
        global $template, $_CONFIG, $core;
   
        if(isset($_POST['login']))
        {
            $template->form->setData();
            unset($template->form->error);
       
            if(isset($template->form->username) && isset($template->form->password))
            {
                if($this->nameTaken($template->form->username))
                {
                    if($this->userValidation($template->form->username, $core->hashed($template->form->password)))
                    {
                        if(($this->getInfo($_SESSION['user']['id'], 'rank')) > 7)
                        {
                            $_SESSION["in_hk"] = true;

If I helped you, maybe you could make this the best answer and like it?
 

VaginaMuncher

Chilling with me bitch Fiona
Mar 17, 2013
447
58
As much as this may have helped in earlier days which I managed to fix it myself.

This post would be considered as spam as post is from early September.
If you're still wondering, here you go:
Find this or something similar and change the 7 to a 6 or lower, whatever you want it to be accessed at.
PHP:
final public function loginHK()
    {
        global $template, $_CONFIG, $core;
  
        if(isset($_POST['login']))
        {
            $template->form->setData();
            unset($template->form->error);
      
            if(isset($template->form->username) && isset($template->form->password))
            {
                if($this->nameTaken($template->form->username))
                {
                    if($this->userValidation($template->form->username, $core->hashed($template->form->password)))
                    {
                        if(($this->getInfo($_SESSION['user']['id'], 'rank')) > 7)
                        {
                            $_SESSION["in_hk"] = true;

If I helped you, maybe you could make this the best answer and like it?
 

Users who are viewing this thread

Top