diff options
author | admin <devnull@localhost> | 2006-10-30 18:13:13 +0100 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-30 18:13:13 +0100 |
commit | cef2106de1c7044072499aa5d4e529a01c3db8a4 (patch) | |
tree | c8f898d01acd5915066e5d65b24ba09933cf903b /user_guide/installation | |
parent | a42bf30be502fa46f61ba77575e71fb587b30102 (diff) |
Diffstat (limited to 'user_guide/installation')
-rw-r--r-- | user_guide/installation/upgrade_150.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/user_guide/installation/upgrade_150.html b/user_guide/installation/upgrade_150.html index 06d0c7027..79632ece1 100644 --- a/user_guide/installation/upgrade_150.html +++ b/user_guide/installation/upgrade_150.html @@ -155,7 +155,13 @@ $config['log_errors'] = FALSE; <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>
+internal modifications, open it and make these two changes:</p>
+
+<p>Find the $application_folder variable and make sure it contains the name of your "application" directory:</p>
+
+<code>$application_folder = "application";</code>
+
+<p>Next, at add this line of code near the bottom of the page:</p>
<code>define('FCPATH', __FILE__);</code>
|