Welcome Guest, Not a member yet? Register   Sign In
plz help me
#1

[eluser]marwan[/eluser]
i'am new in code igniter

An Error Was Encountered

Unable to locate the model you have specified: login
#2

[eluser]marwan[/eluser]
An Error Was Encountered

Unable to locate the model you have specified: login




plz help
#3

[eluser]Pascal Kriete[/eluser]
Welcome to CodeIgniter.

Do you have a file called login.php in your model folder, and is it's class called Login?
#4

[eluser]Derek Allard[/eluser]
Hey Marwan. Welcome to CodeIgniter! I've moved your post out of the lounge and into "application development", where I'm hopeful you'll get more attention. You might also find more descriptive titles help you ge the attention of the community.

Have you created a model and saved it into application/models and named it login.php? If so, can you post the minimum amount of code possible to recreate your error?
#5

[eluser]Derek Allard[/eluser]
I've merged your 2 threads together. I think you'll find that we're a pretty responsive group, no need to double post Wink
#6

[eluser]marwan[/eluser]
thanx for all
#7

[eluser]Michael Wales[/eluser]
Make sure you have a file called login.php in the models directory. Within that file you must properly extend the Models class.

Code:
class Login extends Model {

  function Login() {
    parent::Model();
  }

}




Theme © iAndrew 2016 - Forum software by © MyBB