Welcome Guest, Not a member yet? Register   Sign In
Is my database library missing?
#5

[eluser]walterbyrd[/eluser]
Thanks for the help. But I still can not get anything to work.

I am working on my local system right now. I'm not sure where path.php is located.

I created a mysql database from the command line, and I filled out the database.php file.

Here is what I did on the mysql side:
mysql> create database Blog;
mysql> use Blog;
mysql> create table entries
-> (id int not null primary key auto_increment,
-> title varchar(30),
-> body text);
mysql> create table comments
-> (id int not null primary key auto_increment,
-> entry_id int,
-> body text);
mysql> GRANT ALL PRIVILEGES ON *.* TO walter@localhost IDENTIFIED BY 'xxxxxx' WITH GRANT OPTION;


This is from my database.php file:
$active_group = "default";

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "walter";
$db['default']['password'] = "xxxxxx";
$db['default']['database'] = "Blog";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['active_r'] = TRUE;
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = TRUE;

I checked to make sure there were no trailing spaces after the last ?>.


Messages In This Thread
Is my database library missing? - by El Forum - 07-29-2007, 07:44 PM
Is my database library missing? - by El Forum - 07-29-2007, 07:52 PM
Is my database library missing? - by El Forum - 07-30-2007, 04:46 AM
Is my database library missing? - by El Forum - 07-30-2007, 05:21 AM
Is my database library missing? - by El Forum - 07-30-2007, 06:42 AM
Is my database library missing? - by El Forum - 07-30-2007, 06:50 AM
Is my database library missing? - by El Forum - 07-30-2007, 06:54 AM
Is my database library missing? - by El Forum - 07-30-2007, 10:08 AM
Is my database library missing? - by El Forum - 07-30-2007, 11:22 AM
Is my database library missing? - by El Forum - 07-30-2007, 11:52 AM
Is my database library missing? - by El Forum - 07-30-2007, 12:05 PM
Is my database library missing? - by El Forum - 07-30-2007, 12:54 PM
Is my database library missing? - by El Forum - 07-30-2007, 01:10 PM
Is my database library missing? - by El Forum - 07-30-2007, 01:29 PM
Is my database library missing? - by El Forum - 07-30-2007, 01:47 PM
Is my database library missing? - by El Forum - 07-30-2007, 04:34 PM
Is my database library missing? - by El Forum - 07-30-2007, 05:41 PM
Is my database library missing? - by El Forum - 07-30-2007, 05:44 PM
Is my database library missing? - by El Forum - 07-30-2007, 07:14 PM



Theme © iAndrew 2016 - Forum software by © MyBB