Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7161039
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:29:55+00:00 2026-05-28T13:29:55+00:00

i m creating a login system in codeigniter. i m new in codeigniter. i

  • 0

i m creating a login system in codeigniter. i m new in codeigniter. i have getting this error when testing my login system

    A PHP Error was encountered

Severity: Notice

Message: Trying to get property of non-object

Filename: controllers/login.php

Line Number: 92

Fatal error: Call to a member function userdata() on a non-object in P:\xampp\htdocs\xxxxx\xxxxx\application\controllers\login.php on line 92

here is my login.php controller file

<?php
class Login extends CI_Controller {

    function __construct()
    {
        if($this->is_logged_in() === true){
            redirect('welcome');
        }
    }

    function index()
    {
        $data['main_content'] = 'login_form';
        $data['class_name'] = get_class();
        $data['no_header'] = '1';
        $data['no_footer'] = '1';
        $this->load->view('includes/template', $data);      
    }

    function validate_credentials()
    {       
        $this->load->model('admin_model');
        $query = $this->admin_model->validate();
        print_r($query);
        if($query) // if the user's credentials validated...
        {
            $data = array(
                'AdminID' => $query,
                'is_logged_in' => true
            );
            $this->session->set_userdata($data);
            redirect('welcome');
        }
        else // incorrect username or password
        {
            echo "here";
            exit;
            $this->index();
        }
    }   

    function signup()
    {
        $data['main_content'] = 'signup_form';
        $this->load->view('includes/template', $data);
    }

    function create_member()
    {
        $this->load->library('form_validation');

        // field name, error message, validation rules
        $this->form_validation->set_rules('first_name', 'Name', 'trim|required');
        $this->form_validation->set_rules('last_name', 'Last Name', 'trim|required');
        $this->form_validation->set_rules('email_address', 'Email Address', 'trim|required|valid_email');
        $this->form_validation->set_rules('username', 'Username', 'trim|required|min_length[4]');
        $this->form_validation->set_rules('password', 'Password', 'trim|required|min_length[4]|max_length[32]');
        $this->form_validation->set_rules('password2', 'Password Confirmation', 'trim|required|matches[password]');


        if($this->form_validation->run() == FALSE)
        {
            $this->load->view('signup_form');
        }

        else
        {           
            $this->load->model('membership_model');

            if($query = $this->membership_model->create_member())
            {
                $data['main_content'] = 'signup_successful';
                $this->load->view('includes/template', $data);
            }
            else
            {
                $this->load->view('signup_form');           
            }
        }

    }

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

    function is_logged_in()
    {
        $CI =&get_instance();
        $is_logged_in = $CI->session->userdata('is_logged_in');
        if(isset($is_logged_in) || $is_logged_in === true)
        {
            return true;
        }else{
            return false;
        }
    }
}

i have tried

$CI =&get_instance();

$CI =get_instance();

$this->session->userdata

all three way but getting error.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T13:29:56+00:00Added an answer on May 28, 2026 at 1:29 pm

    you are calling the is_logged_in() function in the Controller’s constructor without calling the parent constructor first. maybe that’s probably why some resources aren’t loaded yet.

    try adding this:

    function __construct()
    {
        parent::__construct(); //you always have to call parent's constructor before ANYTHING
    
        if($this->is_logged_in() === true){
            redirect('welcome');
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am creating a login system for a web application using PHP. My question
I'm creating a login system in PHP, and I want to know how to
I was creating a login system with PHP and I wondered: Why are sessions
Creating a login system for something and am getting: Warning: mysql_result(): supplied argument is
I am creating a custom CMS and have built a login system and was
I'm currently creating a Login form and have this code: string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
I am creating a login system and would have a remember me checkbox. I
I have a classifieds website which I am creating a login system for... In
ok, so i am creating a php login system and wanted a simple way
I'm creating a login page. I want to create ASP.NET TextBox controls that have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.