aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorGreg Larkin <glarkin@FreeBSD.org>2008-10-28 18:21:10 +0000
committerGreg Larkin <glarkin@FreeBSD.org>2008-10-28 18:21:10 +0000
commitb7dc23f4410d9481b770267f8dd336163d378fa3 (patch)
treeba1eed47bfa23040c48bd70b0ed103c3afc826ef /UPDATING
parentd28f925b75813ee9093ce9f5823dcfb8e29cd70e (diff)
downloadports-b7dc23f4410d9481b770267f8dd336163d378fa3.tar.gz
ports-b7dc23f4410d9481b770267f8dd336163d378fa3.zip
- Updated to 1.7.0
- Added MASTER_SITES for redundancy
Notes
Notes: svn path=/head/; revision=222171
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING37
1 files changed, 37 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index b1e5af2cd557..e782f0d7ddeb 100644
--- a/UPDATING
+++ b/UPDATING
@@ -6,6 +6,43 @@ You should get into the habit of checking this file for changes each
time you update your ports collection, before attempting any port
upgrades.
+20081028:
+ AFFECTS: users of www/codeigniter
+ AUTHOR: glarkin@FreeBSD.org
+
+ For certain installations, the following steps should be performed
+ after the CodeIgniter 1.7.0 upgrade (taken from:
+ http://codeigniter.com/user_guide/installation/upgrade_170.html).
+
+ >>> Update your Session Table
+
+ If you are using the Session class in your application, AND if you
+ are storing session data to a database, you must add a new column
+ named user_data to your session table. Here is an example of what
+ this column might look like for MySQL:
+
+ user_data text NOT NULL
+
+ To add this column you will run a query similar to this:
+
+ ALTER TABLE `ci_sessions` ADD `user_data` text NOT NULL
+
+ You'll find more information regarding the new Session functionality
+ in the Session class page:
+
+ http://codeigniter.com/user_guide/libraries/sessions.html
+
+ >>> Update your Validation Syntax
+
+ This is an optional, but recommended step, for people currently
+ using the Validation class. CI 1.7 introduces a new Form Validation
+ class (http://codeigniter.com/user_guide/libraries/form_validation.html)
+ which deprecates the old Validation library. We have left the old one
+ in place so that existing applications that use it will not break, but
+ you are encouraged to migrate to the new version as soon as possible.
+ Please read the user guide carefully as the new library works a little
+ differently, and has several new features.
+
20081026:
AFFECTS: users of japanese/sj3-server
AUTHOR: hrs@FreeBSD.org