Welcome Guest, Not a member yet? Register   Sign In
Error connecting to Database via class
#16

[eluser]xzela[/eluser]
This is so bizarre, I just copied your model and controller code verbatim and it works.
That particular error message is stating that the database class is not being loaded correctly. Which is the original issue if I remember correctly.

hmmm... there are a few things that can cause the database library from loading, and one of the major contributors are improper installations.

What does your $config['base_url'] look like?
(it's located in the /system/application/config/config.php file)

what if you changed it to this:
Code:
$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);

This is a shot it the dark but it may do something...

good luck!


Messages In This Thread
Error connecting to Database via class - by El Forum - 01-26-2009, 05:25 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 05:49 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 06:03 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 06:17 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 06:36 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 06:49 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 07:11 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 07:21 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 07:38 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 07:42 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 07:45 PM
Error connecting to Database via class - by El Forum - 01-26-2009, 09:10 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 06:09 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 06:59 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 07:09 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 07:46 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 07:50 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 08:28 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 08:33 PM
Error connecting to Database via class - by El Forum - 01-27-2009, 09:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB