February 2008
2 posts
CakePHP Radio Fieldsets
Josh needed to output a cakePHP radio button set without the radio button’s around it. We looked at the API, the docs, etc. We just could not figure it out ( 'fieldset'=>false ? or maybe 'fieldset'=>null ?). Nope. So Josh went off looking and found out you just set 'legend'=>false in the input option’s array: echo $form->input('user_need', array('option'=>$radios,...
Feb 28th
Fixing cakeAMFphp in cake1.2
We were in the process of updating an older application to work with AMFPHP and cake1.2. We were getting some fairly serious errors on the AMFPHP connection. We found that one part of the fix was to comment out line 177 in cake_gateway.php and add in a require_once of your app_controller.php file. (This assumes you have an application directory-level app_controller.php...
Feb 10th