Here is the list of advance Cakephp interview questions that every Cakephp developer should know before going for interview. And here I am just giving overview of answers so for complete answers you should go through respective documentation. Question – How many different type of Cache CakePHP Supports? FileCache ApcCache Wincache XcacheEngine MemcacheEngine RedisEngine FileEngine is always…
Cake PHP Url Rewriting
CakePHP Url Rewriting Some developers don’t like CakePhp Url structure because controller name should end with “s” and that cause a lot of dissatisfaction fro developers while developing with cakephp. For this CakePhp provides a simple and effective way to rewrite url in seo friendly way and according to client requirement. So how to write…
CakePhp Association With Example
CakePhp Association Example CakePhp provides a very powerfull mechanism to handle relation between models ( i.e foreign key relationship between database tables ) by itself with the call of just one function. The four association types in CakePHP are: hasOne, hasMany, belongsTo, and hasAndBelongsToMany (HABTM). Here I am giving expamle for hasOne association in CakePhp. There will…