diff options
author | admin <devnull@localhost> | 2006-08-27 21:32:02 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-08-27 21:32:02 +0200 |
commit | 1082bddc0c065895a3b39607cb930f5a101f54fb (patch) | |
tree | 2c19cb7dcee82642f2a072bf9f432091fda4c8b1 /user_guide/installation | |
parent | 0d29605b1e774efd57ffd8f5ccc8eaec1e9ca576 (diff) |
Diffstat (limited to 'user_guide/installation')
-rw-r--r-- | user_guide/installation/upgrade_140.html | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/user_guide/installation/upgrade_140.html b/user_guide/installation/upgrade_140.html index 7f25c44e9..bd84c2421 100644 --- a/user_guide/installation/upgrade_140.html +++ b/user_guide/installation/upgrade_140.html @@ -87,7 +87,33 @@ have not upgraded to that version please do so first.</p> </ul>
-<h2>Step 4: Update your user guide</h2>
+<h2>Step 2: Update your config.php file</h2>
+
+<p>Open your <dfn>application/config/config.php</dfn> file and add these new items:</p>
+
+<pre>
+/*
+|--------------------------------------------------------------------------
+| Allowed URL Characters
+|--------------------------------------------------------------------------
+|
+| This lets you specify which characters are permitted within your URLs.
+| When someone tries to submit a URL with disallowed characters they will
+| get a warning message.
+|
+| As a security measure you are STRONGLY encouraged to restrict URLs to
+| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
+|
+| Leave blank to allow all characters -- but only if you are insane.
+|
+| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
+|
+*/
+$config['permitted_uri_chars'] = 'a-z 0-9~%.:_-';
+</pre>
+
+
+<h2>Step 3: Update your user guide</h2>
<p>Please also replace your local copy of the user guide with the new version.</p>
|