Jump to content

undefined index CI help


sasori

Recommended Posts

I got this code from somewhere, when i tried to run it, i am getting an error, here's the screen shot of the error

11t2b2a.jpg

 

 

<?php


class Account extends Controller
{

    function Account()
    {
      parent::Controller();
      $this->load->library(array('form_validation','session'));
      $this->load->helper(array('url','form'));
      $this->load->model('account_model');

      $this->_salt = "123456789987654321";
    }

    function index()
    {
      if($this->account_model->logged_in() === TRUE)
      {
        $this->dashboard(TRUE);
      }
      else
      {
        $this->load->view('account/details');
      }
    }

    function dashboard($condition = FALSE)
    {
      if($condition === TRUE OR $this->account_model->logged_in() === TRUE)
      {
        $this->load->view('account/dashboard');
      }
      else
      {
        $this->load->view('account/details');
      }
    }

    function login()
    {
      $this->form_validation->set_rules('username','Username','xss_clean|required|callback_username_check');
      $this->form_validation->set_rules('password','Password','xss_clean|min_length[4]|max_length[12]|sha1|callback_password_check');
      $this->_username = $this->input->post('username');
      $this->_password = sha1($this->_salt . $this->input->post('password'));

      if($this->form_validation->run() == FALSE)
      {
        $this->load->view('account/login');
      }
      else
      {
        $this->account_model->login();
        $data['message'] = 'You are logged in! Now go take a look at the '.anchor('account/dashboard','Dashboard');
        $this->load->view('account/success',$data);
      }
    }

    function password_check()
    {
      $this->db->where('username',$this->_username);
      $query = $this->db->get('users');
      $result = $query->result_array();

      if($result['password'] == $this->_password)
      {
        return TRUE;
      }

      if($query->num_rows() == 0)
      {
        $this->form_validation->set_message('password_check','There was an error!');
        return FALSE;
      }
    }

    function register()
    {
      $this->form_validation->set_rules('username','Username','xss_clean|required');
      $this->form_validation->set_rules('email','Email Address','xss_clean|required|valid_email|callback_email_exists');
      $this->form_validation->set_rules('password','Password','xss_clean|required|min_length[4]|max_length[12]|matches[password_conf]|sha1');
      $this->form_validation->set_rules('password_conf','Password Confirmation','xss_clean|required|matches[password]|sha1');

      if($this->form_validation->run() == FALSE)
      {
        $this->load->view('account/register');
      }
      else
      {
        $data['username'] = $this->input->post('username');
        $data['email'] = $this->input->post('email');
        $data['password'] = sha1($this->_salt. $this->input->post('password'));
        if($this->account_model->create($data)== TRUE)
        {
          $data['message'] = "The user account has now been created! You can login ". anchor('account/login','here').".";
          $this->load->view('account/success',$data);
        }
        else
        {
          $data['error'] = "There was a problem when adding your account to the database.";
          $this->load->view('account/error',$data);
        }
      }

    }

    function user_exists($user)
    {
      $query = $this->db->get_where('users',array('username'=>$user));
      if($query->num_rows() > 0)
      {
        $this->form_validation->set_message('user_exists','The %s already exists in our database,please use a different one.');
        return FALSE;
      }
      $query->free_result();
      return TRUE;
    }

    function email_exists($email)
    {
      $query = $this->db->get_where('users',array('email'=> $email));

      if($query->num_rows() > 0)
      {
        $this->form_validation->set_message('email_exists','The %s already exists in our database.');
        return FALSE;
      }
      $query->free_result();
      return TRUE;
    }

    function logout()
    {
        $this->session->sess_destroy();
        $this->load->view('account/logout');
    }
}

/** end of account controller    */

 

can you guys tell me what's wrong ?.. the second error sounds familiar to me though

Link to comment
Share on other sites

The first error indicates that you are attempting to access an array index (called password) that does not exist. You should always check indexes exist before accessing them.

 

The second error is the most common of all errors. See the 'header errors' sticky at the top of this board.

Link to comment
Share on other sites

fixed...I wrapped this block in a foreach loop

      if($result['password'] == $this->_password)
      {
        return TRUE;
      }

      if($query->num_rows() == 0)
      {
        $this->form_validation->set_message('password_check','There was an error!');
        return FALSE;
      }
    }

 

to

 

      foreach($result as $row){
      if($row['password'] == $this->_password)
      {
        return TRUE;
      }

      if($query->num_rows() == 0)
      {
        $this->form_validation->set_message('password_check','There was an error!');
        return FALSE;
      }
      }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.