From ae3fbabe663d4f5f853e511b2e4619553787d3ad Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 20 Oct 2006 23:20:12 +0000 Subject: --- user_guide/installation/upgrade_150.html | 49 ++++++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) (limited to 'user_guide/installation') diff --git a/user_guide/installation/upgrade_150.html b/user_guide/installation/upgrade_150.html index cf41dc408..4e25c54b4 100644 --- a/user_guide/installation/upgrade_150.html +++ b/user_guide/installation/upgrade_150.html @@ -97,14 +97,59 @@ $db['default']['cachedir'] = ''; -

Step 3: Update your main index.php file

+ +

Step 2: Update your config.php file

+ +

Open your application/config/config.php file and ADD this new item:

+ +
+/*
+|--------------------------------------------------------------------------
+| Class Extension Prefix
+|--------------------------------------------------------------------------
+|
+| This item allows you to set the filename/classname prefix when extending
+| native libraries.  For more information please see the user guide:
+| 
+| http://www.codeigniter.com/user_guide/general/core_classes.html
+| http://www.codeigniter.com/user_guide/general/creating_libraries.html
+|
+*/
+$config['subclass_prefix'] = 'MY_';
+
+ +

In that same file REMOVE this item:

+ + +
+/*
+|--------------------------------------------------------------------------
+| Enable/Disable Error Logging
+|--------------------------------------------------------------------------
+|
+| If you would like errors or debug messages logged set this variable to 
+| TRUE (boolean).  Note: You must set the file permissions on the "logs" folder
+| such that it is writable.
+|
+*/
+$config['log_errors'] = FALSE;
+
+ +

Error logging is now disabled simply by setting the threshold to zero.

+ + + +

Step 4: Update your main index.php file

If you are running a stock index.php file simply replace your version with the new one. If you are running one with internal modifications, open it and add this line of code near the bottom:

define('FCPATH', __FILE__); -

Step 4: Update your user guide

+ + + +

Step 5: Update your user guide

Please also replace your local copy of the user guide with the new version.

-- cgit v1.2.3-24-g4f1b