CodeIgniter Forums
How easy will upgrade CI from 2.1.x - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: How easy will upgrade CI from 2.1.x (/showthread.php?tid=619)



How easy will upgrade CI from 2.1.x - sandeepmittal88 - 12-26-2014

I am using CI in my 5 live projects. How easy will upgrade CI from 2.1.x. I am very excited to update CI.

Any guide on this?


RE: How easy will upgrade CI from 2.1.x - Rufnex - 12-26-2014

Check it here
http://www.codeigniter.com/userguide3/installation/upgrading.html
http://www.codeigniter.com/userguide3/installation/upgrade_211.html


RE: How easy will upgrade CI from 2.1.x - John_Betong - 12-26-2014

>>> I am using CI in my 5 live projects. How easy will upgrade CI from 2.1.x. I am very excited to update CI.

I have all the latest versions installed "above the root" in a ci2 folder and change a single line in index.php:

# index.php
#$system_path = 'system';
#$system_path = '../../ci2/CodeIgniter_2_1_4/system';
#$system_path = '../../ci2/CodeIgniter_2_2_stable/system';
$system_path = '../../ci2/CodeIgniter_2_2_0/system';



Also in a common footer I have the following:
echo '<span class="flr">Fuelled by: CodeIgniter - ver: ' .CI_VERSION .'</span>';