Welcome Guest, Not a member yet? Register   Sign In
Problem finding Model
#1

[eluser]CRHayes[/eluser]
Hey everyone! I just dowloaded CI and started with it, but I have this error message:

Code:
An Error Was Encountered
Unable to locate the model you have specified: login_model

This is the code for the model:
Code:
<?php

class Login_model extends Model {
    
    function Login_model()
    {
        parent::Model();
    }

    function userLogin($username)
    {

        $result = $this->db->query("SELECT member_id, username, password, authority FROM member_profile WHERE username = '$username'");
        return $result;
    }
}

?>

This is the line in the controller loading the message:
Code:
$this->load->model('Login_model', '', TRUE);

And I have a Login_model.php saved in my models folder. I have NO idea whats wrong! I can't find documentation or help anywhere! Please help! lol


Messages In This Thread
Problem finding Model - by El Forum - 11-23-2007, 01:12 AM
Problem finding Model - by El Forum - 11-23-2007, 01:44 AM
Problem finding Model - by El Forum - 11-23-2007, 01:46 AM
Problem finding Model - by El Forum - 11-23-2007, 01:46 AM
Problem finding Model - by El Forum - 11-23-2007, 02:00 AM
Problem finding Model - by El Forum - 11-23-2007, 02:04 AM
Problem finding Model - by El Forum - 11-23-2007, 02:07 AM
Problem finding Model - by El Forum - 11-23-2007, 02:34 AM
Problem finding Model - by El Forum - 11-23-2007, 03:21 AM
Problem finding Model - by El Forum - 11-23-2007, 07:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB