vote up 0 vote down star

hi im using codeigniter framework but im not able to use database with codeigniter im following this tutorial but when i open in our localhost 404 page not found come

flag

29% accept rate
please provide us with some more information. is the standard installation working? do you get the welcome page? because 404 should have nothing todo with the database... – Sander Versluys Jul 11 at 12:00
404 actually means your page doesn't exist. Make sure you typed the right address. – usoban Jul 11 at 12:00
ya i got the welcome page and also i created a hello world programme which is also working – vipinsahu Jul 11 at 12:01
but when i tried with database 404 error occures plz if u r having a tutorial over this put it here – vipinsahu Jul 11 at 12:02
do you get a 404 only when the database library gets loaded? more info please... – Sander Versluys Jul 11 at 15:23
show 1 more comment

2 Answers

vote up 2 vote down

If you're getting a 404, it may not be your database connection. Check your routing, and be sure that you are accessing a page that does indeed exist. If you're accessing a controller that loads a view, stop loading the view for now and test the connection directly from the controller - output "YES" if it is, and "NO" if anything else.

If your problem persists, double-check your database-connection configuration. Lastly, I would suggest you follow the documentation rather than another website when you are getting familiar with a framework. You can view the documentation for the Database class at http://codeigniter.com/user_guide/database/index.html

link|flag
vote up 0 vote down

You need to set up your application/config/database.

Here you need to add your information for your database.

$active_group = "default";
$active_record = TRUE;

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "yourdbusername";
$db['default']['password'] = "password_for_db";
$db['default']['database'] = "name_of_db";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";

Have you done it?

link|flag

Your Answer

Get an OpenID
or

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