Notes for migrating Cakephp 1.2.0.5427 to 1.2.5

Steps for migrating CakePHP to 1.2.5.

Update Core CakePHP files
Replace findByFieldName, findAllByFieldName with find(’first’, $param) and find(’all’, $param)
findBy* methods are replaced with find($type, $param)
$html->input replace with $form->input
Form inputs comes in a new helper
var $helpers = array(’Html’, ‘Form’);
Include FormHelper in $helpers

bookmark