Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A PHP Error was encountered

Severity: Notice

Message: Undefined property: Home::$db

Filename: core/Model.php

Line Number: 51

updating autoload.php giving http:500 error

share|improve this question
Please add the line of code that's producing the error. – stealthyninja Feb 28 '12 at 6:18
Are you loading the database library? Is the database config set correctly? – Rooneyl Feb 28 '12 at 10:29

1 Answer

It could be any the following:

You must make sure you have set up your database details correctly in the application/config/database.php file. Instruction on what to fill in here are explained on this page of the manual: http://codeigniter.com/user_guide/database/configuration.html

Or it could be that you first need to load the database library by writing the following code above where you have written your query:

$this->load->database();

And to run your query, the code should look roughly like:

$this->db->query('SELECT * FROM mytable');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.