Проверка с помощью php - PullRequest
       2

Проверка с помощью php

0 голосов
/ 31 декабря 2011

Я пытаюсь проверить свою пользовательскую серверную часть с помощью php, и это говорит о том, что я получаю фатальную ошибку: вызов неопределенной функции reGenPassHash () в /home/xtremer/public_html/kowmanager/application/models/loggedin.php в строке 13 теперь у меня есть модель, которая включает функцию reGenPassHash, загруженную автоматически, поэтому я подумал, что она будет доступна для использования, но по какой-то причине ее нет из-за этого сообщения. Кто-то объясняет почему?

Модель:

public function check_login($username, $password)
{
    $generated_password = reGenPassHash($password);
    $query = "SELECT user_id WHERE username = ? AND password = ?";
    $result = $this->db->query($query, array($username, $generated_password));

    if ($result->num_rows == 1)
    {
        return $result->row(0)->user_id;

    }
    else
    {
        return false;
    }

}

Контроллер:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Usermanagement extends CI_Controller { 

public function __construct()
{
    parent::__construct();
}   

public function index()
{
    //Config Defaults Start
    $msgBoxMsgs = array();//msgType = dl, info, warn, note, msg
    $cssPageAddons = '';//If you have extra CSS for this view append it here
    $jsPageAddons = '';//If you have extra JS for this view append it here
    $metaAddons = '';//Sometimes there is a need for additional Meta Data such in the case of Facebook addon's
    $siteTitle = '';//alter only if you need something other than the default for this view.
    //Config Defaults Start


    //examples of how to use the message box system (css not included).
    //$msgBoxMsgs[] = array('msgType' => 'dl', 'theMsg' => 'This is a Blank Message Box...');

    /**********************************************************Your Coding Logic Here, Start*/

    if(!$this->session->userdata('logged_in'))
    {
        $bodyContent = "login";//which view file
    }
    else
    {
        $bodyContent = "cpanel/index";//which view file
    }

    $bodyType = "full";//type of template

    /***********************************************************Your Coding Logic Here, End*/

    //Double checks if any default variables have been changed, Start.
    //If msgBoxMsgs array has anything in it, if so displays it in view, else does nothing.      
    if(count($msgBoxMsgs) !== 0)
    {
        $msgBoxes = $this->msgboxes->buildMsgBoxesOutput(array('display' => 'show', 'msgs' =>$msgBoxMsgs));
    }
    else
    {
        $msgBoxes = array('display' => 'none');
    }

    if($siteTitle == '')
    {
        $siteTitle = $this->metatags->SiteTitle(); //reads 
    }

    //Double checks if any default variables have been changed, End.

    $this->data['msgBoxes'] = $msgBoxes;
    $this->data['cssPageAddons'] = $cssPageAddons;//if there is any additional CSS to add from above Variable this will send it to the view.
    $this->data['jsPageAddons'] = $jsPageAddons;//if there is any addictional JS to add from the above variable this will send it to the view.
    $this->data['metaAddons'] = $metaAddons;//if there is any addictional meta data to add from the above variable this will send it to the view.
    $this->data['pageMetaTags'] = $this->metatags->MetaTags();//defaults can be changed via models/metatags.php
    $this->data['siteTitle'] = $siteTitle;//defaults can be changed via models/metatags.php
    $this->data['bodyType'] = $bodyType;
    $this->data['bodyContent'] = $bodyContent;
    $this->load->view('usermanagement/index', $this->data);
}

function login()
{
    $this->form_validation->set_rules('username', 'Username', 'trim|required|max_length[50]|xss_clean');
    $this->form_validation->set_rules('password', 'Password', 'trim|required|max_length[12]|xss_clean');

    if ($this->form_validation->run() == FALSE)
    {
        $this->index();
    }
    else
    {
        $username = $this->input->post('username');
        $password = $this->input->post('password');

        $user_id = $this->loggedin->check_login($username, $password);

        if(! $user_id)
        {
           redirect('/'); 
        }
        else
        {
            $this->session->set_userdata(array(
                'logged_in' => TRUE,
                'user_id' => $user_id
            ));
            redirect('cpanel/index');
        }
    }
}

function logout()
{
   $this->session->sess_destroy();
   $this->index();
}       

}

/* End of file usermanagement.php */ 
/* Location: ./application/controllers/usermanagement.php */ 

РЕДАКТИРОВАТЬ:

Я пытаюсь убедиться, что моя логика верна. Должен ли я работать с вызовом функции regenPassHash в моем контроллере?

РЕДАКТИРОВАТЬ 2:

Это пример того, как выглядят мои функции пароля (модель getfunc):

<code><?php
function GenPassHash($logPass)
{
    $usersalt = substr(md5(uniqid(rand(), true)), 0, 11);
    $encPass = sha1($logPass);
    $sltPass = $encPass . $usersalt;$encSPass = sha1($sltPass);
    $passArray = array($encSPass,$usersalt);
    return $passArray;
}
function reGenPassHash($postDpass, $storeSalt)
{
    $logPass = $postDpass;
    $encPass = sha1($logPass);
    $sltPass = $encPass . $storeSalt;
    $encSPass = sha1($sltPass);
    return $encSPass;
}

//useage
$logPass = "catcher05";//this could be your posted variable from registration

$passforDB = GenPassHash($logPass);
echo "<pre>";
print_r($passforDB);
echo "
"; echo "Зашифрованный пароль:". $ passforDB [0]. "
"; эхо "Соленая стоимость:". $ passforDB [1]. "
"; echo "----------------------------------
"; // в этом примере я публикую $ passforDB [1] с функцией ниже, чтобы стимулировать вытаскивание его из БД echo reGenPassHash ($ logPass, $ passforDB [1]); // вы запрашиваете, основываясь на вашем имени пользователя и только извлекают соль и зашифрованный проход, вы используете соль в этой функции ?>

Контроллер:

function login()
{
    $this->form_validation->set_rules('username', 'Username', 'trim|required|max_length[50]|xss_clean');
    $this->form_validation->set_rules('password', 'Password', 'trim|required|max_length[12]|xss_clean');

    if ($this->form_validation->run() == FALSE)
    {
        $this->index();
    }
    else
    {
        $username = $this->input->post('username');
        $password = $this->input->post('password');
        $generated_password = $this->getfunc->reGenPassHash($password);

        $user_id = $this->loggedin->check_login($username, $password);

        if(! $user_id)
        {
           redirect('/'); 
        }
        else
        {
            $this->session->set_userdata(array(
                'logged_in' => TRUE,
                'user_id' => $user_id
            ));
            redirect('cpanel/index');
        }
    }
}

Модель:

public function check_login($username, $password)
{
$query = "SELECT * WHERE username = ".$username."";
$result = $this->db->query($query);

if ($result->num_rows == 1)
{
    $passwordDB = $result->row(0)->password;
    $passwordDB2 = $result->row(0)->password2;


    return $result->row(0)->user_id;

}
else
{
    return false;
}

}

Ответы [ 4 ]

3 голосов
/ 31 декабря 2011

Функция reGenPassHash () не видна методу check_login ().вызовите reGenPassHas с объектом.

ex: $object->reGenPassHas().

это проблема области действия

1 голос
/ 31 декабря 2011

Вам необходимо вызвать функцию reGenPassHash через объект модели, например:

$this->your_model_with_pass_function->reGenPassHash()
1 голос
/ 31 декабря 2011

Единственная ошибка, которую я увидел с вашим кодом, это то, что вы неправильно называете свой метод . Для любого метода класса вам нужны объекты для доступа к методам.

Это может $ this. в вашем случае или что-то еще в других случаях.

Попробуйте использовать $this -> reGenPassHash() для вызова метода , только если он используется в модели, или вам потребуется соответствующий модификатор объекта.

UPDATE:

  1. Включите ваш GenPassHash () и reGenPassHash () на вашем контроллере.
  2. Вместо $this->getfunc->reGenPassHash() используйте $this->reGenPassHash()
1 голос
/ 31 декабря 2011

Автозагрузка включается только для методов объекта.Вы не используете объектную нотацию при вызове функции regen, поэтому она рассматривается как обычный вызов функции - и эта функция не определена.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...