From 71e647782764184e3aab4faffe6d99176758979f Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Thu, 22 Mar 2018 16:48:55 +0200 Subject: [ci skip] 3.1.8 release --- user_guide_src/source/installation/upgrade_201.rst | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 user_guide_src/source/installation/upgrade_201.rst (limited to 'user_guide_src/source/installation/upgrade_201.rst') diff --git a/user_guide_src/source/installation/upgrade_201.rst b/user_guide_src/source/installation/upgrade_201.rst deleted file mode 100644 index 93e1aa68d..000000000 --- a/user_guide_src/source/installation/upgrade_201.rst +++ /dev/null @@ -1,39 +0,0 @@ -############################# -Upgrading from 2.0.0 to 2.0.1 -############################# - -Before performing an update you should take your site offline by -replacing the index.php file with a static one. - -Step 1: Update your CodeIgniter files -===================================== - -Replace all files and directories in your "system" folder and replace -your index.php file. If any modifications were made to your index.php -they will need to be made fresh in this new one. - -.. note:: If you have any custom developed files in these folders please - make copies of them first. - -Step 2: Replace config/mimes.php -================================ - -This config file has been updated to contain more mime types, please -copy it to application/config/mimes.php. - -Step 3: Check for forms posting to default controller -===================================================== - -The default behavior for form_open() when called with no parameters -used to be to post to the default controller, but it will now just leave -an empty action="" meaning the form will submit to the current URL. If -submitting to the default controller was the expected behavior it will -need to be changed from:: - - echo form_open(); //
- -to use either a / or base_url():: - - echo form_open('/'); // - echo form_open(base_url()); // - -- cgit v1.2.3-24-g4f1b