From 75d568db823b8fe7526e416f5e3f1c2c235f5473 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 30 Jan 2008 20:26:25 +0000 Subject: removed 'active_r' db config variable, replaced with global $active_record setting. (bug report #1834) --- user_guide/installation/upgrade_160.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'user_guide/installation/upgrade_160.html') diff --git a/user_guide/installation/upgrade_160.html b/user_guide/installation/upgrade_160.html index 9cddf6b61..4b513d506 100644 --- a/user_guide/installation/upgrade_160.html +++ b/user_guide/installation/upgrade_160.html @@ -82,7 +82,12 @@ Upgrading from 1.5.3 to 1.5.4

$config['sess_time_to_update'] = 300;

Step 3: Add to your database.php

-

Add the following to system/application/config/database.php with the other database configuration options

+

Make the following changes to your system/application/config/database.php file:

+

Add the following variable above the database configuration options, with $active_group

+

$active_record = TRUE;

+

Remove the following from your database configuration options

+

$db['default']['active_r'] = TRUE;

+

Add the following to your database configuration options

$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";

-- cgit v1.2.3-24-g4f1b