Articles

Jun
11th
2010
0
Comments

CodeIgniter 1.7 Professional Development book review

Unfortunately it won't make you a CodeIgniter expert. A couple weeks ago Packt publishing contacted me to review a book they had recently published, called CodeIgniter 1.7 Professional Development by Adam Griffiths. The preface states…

May
4th
2010
0
Comments

Database driven routes in CodeIgniter with caching

A faster, simpler and easier solution to database driven routes in CodeIgniter. Don't know what I'm on about? Read my previous article on database driven routes. Prerequisites CodeIgniter Datamapper Step 1 Define 3 new methods…

Feb
22nd
2010
0
Comments

Django style comments module for Kohana 2.3

The comments module allows you to quickly attach comments to models without creating extra tables or columns in your database. Download comment.zip Install Unzip and copy the folder to the Kohana modules directory. Then edit…

Feb
14th
2010
2
Comments

Database driven routes in CodeIgniter

Using a pre_system hook the routes array can be populated from your database. A route is a CodeIgniter controller action alias. Used to build search engine friendly sites. eg posts/database-driven-routes-in-codeigniter is mapped to posts/get/2 Step…

Feb
13th
2010
2
Comments

Configure CodeIgniter to run on two servers

Using a dynamicly defined constant in the index.php file, CodeIgniter can be set up to run on two servers. I have found this really speeds up my development time, especially if used along with Bazaar…