From c230ddc702e6104e1ad1bf1df85a61aefdc2f184 Mon Sep 17 00:00:00 2001 From: visual77 Date: Fri, 6 Nov 2009 06:00:53 +0000 Subject: [PATCH] added a basic kohana system to be fleshed out into a nrew brewblogger --- Connections/config.php | 6 +++--- index.php | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/Connections/config.php b/Connections/config.php index 70c75ba..9def92b 100644 --- a/Connections/config.php +++ b/Connections/config.php @@ -10,21 +10,21 @@ INSERT YOUR USERNAME BETWEEN THE DOUBLE-QUOTATION MARKS (""). For example, if your username is fred then the line should read $username_brewblog = "fred". */ -$username_brewblog = ""; +$username_brewblog = "brewblogger"; /* INSERT YOUR PASSWORD BETWEEN THE DOUBLE-QUOTATION MARKS (""). For example, if your password is flintstone then the line should read $password_brewblog = "flintsone". */ -$password_brewblog = ""; +$password_brewblog = "bb"; /* The following line is the name of your MySQL database you set up already. If you haven't set up the database yet, please refer to http://www.brewblogger.net/ for setup instructions. */ -$database_brewing = ""; +$database_brewing = "brewblogger_trunk"; /* This line strings the information together and connects to MySQL. diff --git a/index.php b/index.php index 939efc5..e3aa4cf 100644 --- a/index.php +++ b/index.php @@ -1,14 +1,40 @@