diff options
author | glarkin <glarkin@FreeBSD.org> | 2008-10-28 18:21:10 +0000 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2008-10-28 18:21:10 +0000 |
commit | 16c3f04f6f2a05768ddd62edae35017a11383d00 (patch) | |
tree | 5fcfaa3b9e6f9704d134f70d0681b9fa16f6b56f /UPDATING | |
parent | fe488f49ef4c9889eb78c169dfb250d427b0db93 (diff) | |
download | FreeBSD-ports-16c3f04f6f2a05768ddd62edae35017a11383d00.zip FreeBSD-ports-16c3f04f6f2a05768ddd62edae35017a11383d00.tar.gz |
- Updated to 1.7.0
- Added MASTER_SITES for redundancy
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -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 |