summaryrefslogtreecommitdiffstats
path: root/user_guide/installation
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-21 01:20:12 +0200
committeradmin <devnull@localhost>2006-10-21 01:20:12 +0200
commitae3fbabe663d4f5f853e511b2e4619553787d3ad (patch)
tree58dfbd2b7894496ef0ddfd375d381f0fc9741913 /user_guide/installation
parent82654c38441540e14096ec0fd95623af14d165ee (diff)
Diffstat (limited to 'user_guide/installation')
-rw-r--r--user_guide/installation/upgrade_150.html49
1 files changed, 47 insertions, 2 deletions
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'] = '';
</pre>
-<h2>Step 3: Update your main index.php file</h2>
+
+<h2>Step 2: Update your config.php file</h2>
+
+<p>Open your <dfn>application/config/config.php</dfn> file and <kbd>ADD</kbd> this new item:</p>
+
+<pre>
+/*
+|--------------------------------------------------------------------------
+| 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_';
+</pre>
+
+<p>In that same file <kbd>REMOVE</kbd> this item:</p>
+
+
+<pre>
+/*
+|--------------------------------------------------------------------------
+| 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;
+</pre>
+
+<p>Error logging is now disabled simply by setting the threshold to zero.</p>
+
+
+
+<h2>Step 4: Update your main index.php file</h2>
<p>If you are running a stock <dfn>index.php</dfn> 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:</p>
<code>define('FCPATH', __FILE__);</code>
-<h2>Step 4: Update your user guide</h2>
+
+
+
+<h2>Step 5: Update your user guide</h2>
<p>Please also replace your local copy of the user guide with the new version.</p>