From 45927d86ee8faafbbc68a4bea544b3f50494d7e5 Mon Sep 17 00:00:00 2001 From: Pascal Kriete Date: Thu, 7 Jun 2012 16:16:33 -0400 Subject: Documenting IPv6 changes and adding update notes. --- user_guide/changelog.html | 2 + user_guide/installation/upgrade_211.html | 90 ++++++++++++++++++++++++++++++++ user_guide/installation/upgrading.html | 1 + user_guide/libraries/sessions.html | 2 +- 4 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 user_guide/installation/upgrade_211.html (limited to 'user_guide') diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 266ae8652..1b8b09729 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -69,6 +69,8 @@ Change Log
  • Libraries
  • Helpers diff --git a/user_guide/installation/upgrade_211.html b/user_guide/installation/upgrade_211.html new file mode 100644 index 000000000..a581fd6c9 --- /dev/null +++ b/user_guide/installation/upgrade_211.html @@ -0,0 +1,90 @@ + + + + + +Upgrading from 2.1.0 to 2.1.1 : CodeIgniter User Guide + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +

    CodeIgniter User Guide Version 2.1.1

    +
    + + + + + + + + + +
    + + +
    + + + +
    + +

    Upgrading from 2.1.0 to 2.1.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: Update your IP address tables:

    + +

    This upgrade adds support for IPv6 IP addresses. In order to store them, you need to enlarge your ip_address columns to 45 characters. For example, CodeIgniter's session table will need to change:

    + +ALTER TABLE ci_sessions CHANGE ip_address ip_address varchar(45) default '0' NOT NULL + +
    + + + + + + + \ No newline at end of file diff --git a/user_guide/installation/upgrading.html b/user_guide/installation/upgrading.html index c3f5ae6dd..01e1e2248 100644 --- a/user_guide/installation/upgrading.html +++ b/user_guide/installation/upgrading.html @@ -60,6 +60,7 @@ Upgrading from a Previous Version

    Please read the upgrade notes corresponding to the version you are upgrading from.