Top 50 Cakephp Interview Questions You Must Prepare 27.Jul.2024

Q1. How To Get Current Url In Cakephp?

To get current url in cakephp use, 

echo Router::url($this->here, true);

This will give full URL with hostname.If you want to get relative path instead of full URL,then use the following code:

echo $this->here;

This will produce absolute URL excluding hostname i.e. /controller/abc/xyz/

Q2. What Is The Use Of Security.salt And Security.cipherseed In Cakephp? How To Change Its Default Value?

  • The Security.salt is used for generating hashes.we can change the default Security.salt value in /app/Config/core.php.  
  • The Security.cipherseed is used for encrypt/decrypt strings.We can change the default Security.cipherSeed value by editing /app/Config/core.php. 

Q3. How To Set Layout In The Controller?

var $layout = ‘layout_name’;

to overwrite for a specific action use below code in that action

$this->layout =”layout_name”;

Q4. What Is The Use Of Requestaction Method?

The method requestAction is used to call a controller’s action from any location and returns data from the action.

Q5. What Is The Difference Between Component, Helper, Behavior?

Component is a Controller extension, Helpers are View extensions, Behavior is a Model Extension.

Q6. What Is A Element?

Element in cakephp are smaller and reusable bits of view code. Elements are usually rendered inside views.

Q7. How To Add Scaffolding In Your Application?

To add scaffolding to your application,just add the $scaffold variable in the controller,

<?php
class PostsController extends AppController {
    var $scaffold;
}
?>

Assuming you’ve created Post model class file (in /app/Model/post.php).

Q8. Which Methods Are Used To Create And Destroy Model Associations On The Fly?

The bindModel() and unbindModel() Model methods are used to create and destroy model associations on the fly.

Q9. How To Display The Schema Of The Model?

If you want to display the schema of particular model then you just need to add the following single line of code.For example we have “Posts” Controller.

pr($this->Post->schema());

Q10. List Some Of The Features In Cakephp?

  1. Compatible with versions 4 and 5 of PHP
  2. MVC architecture
  3. Built-in validations
  4. Caching
  5. Scaffolding
  6. Access Control Lists and Authentication.
  7. CSRF protection via Security Component.

Q11. What Are The Advantages Of Each?which Would You Use And Why?

An advantage with first case $this->set('posts', $posts); is that it allows two different names for the view file and controller file. For example, you could write something like $this->set('postData', $posts);. Now the variable name in the view file would be $postData.

The advantage with the second approach $this->set(compact()); is easier to write, and useful especially when we are setting several variables to the view.No need to add separate line for each variable as we have with $this->set();

For example,

$this->set(compact('posts','users','reports'));

Q12. How Can You Include A Javascript Menu Throughout The Site. Give Steps.

By adding the javascript files in webroot and call them in default views if needed everywhere or just in the related veiws.

Q13. What Is The First File That Gets Loaded When You Run A Application Using Cakephp?can You Change That File?

bootstrap.php

yes it can be changed.Either through index.php , or through .htaccess

Q14. How To Write, Read And Delete The Session In Cakephp?

$this->Session->write(‘Bird.Color’, ‘Black’);
$black = $this->Session->read(‘Bird.Color’);
$this->Session->delete(‘Bird’); 

Q15. What Is The Folder Structure Of Cakephp?

cakephp/
app/
Config/
Console/
Controller/
Lib/
  Locale/
  Model/
  Plugin/
  Test/
  tmp/
  Vendor/
  View/
  webroot/
    .htaccess
  index.php
  
 lib/
 plugins/
 vendors/
 .htaccess/
 index.php/
 README.md/

Q16. What Are Commonly Used Helpers Of Cakephp?

  • FormHelper
  • HtmlHelper
  • JsHelper
  • CacheHelper
  • NumberHelper
  • Paginator
  • RSS
  • SessionHelper
  • TextHelper
  • TimeHelper

Q17. What Is The Use Of $this->set();

The set() method is used for creating a variable in the view file.Say for example if we write,

$this->set('posts',$posts); in controller fie, then the variable $posts will be available to use in the view template file for that action.

Q18. What Is The Use Of $this->set(compact());?

Using $this->set(compact()) , we can pass multiple parameters to access into the view file.

For example,

$this->set(compact('posts','users','reports'));

Now all these variables will be available in respective view file.

Q19. What Is The Default Extension Of View Files In Cakephp?can We Change It?if Yes Then How?

default extension of view files is '.ctp'.

yes we can change it by writing public $ext = '.yourext'; in AppController.If you want to change it for particular controller then add it into that controller only.You can also change it for the specific action of the controller by putting it in that action of controller.

public $ext = '.yourext'; in AppController

 - you can change all the views extentions.

 public $ext = '.yourext';  in specific controller like, PostsController

- you can change all the views extentions of PostsController.

public $ext = '.yourext';  in specific controller action like, index()

- you can change the view extention of index.ctp 

Note: You cannot specify multiple extensions, however it seems like there is a fall back to .ctp if no .php file is found.

Q20. What Is Scaffolding In Cakephp?

Scaffolding is a technique that allows a developer to define and create a basic application that can create, retrieve, update and delete objects.

Q21. Can You List Some Database Related Functions In Cakephp?

find, findAll , findAllBy , findBy , findNeighbours and query.

Q22. What Is Habtm?

Has and belongs to many is a kind of associations that can be defined in models for retrieving associated data across different entities.

Q23. What Is A Helper?

Helpers in CakePHP are associated with Presentation layers of application.Helpers mainly contain presentational logic which is available to share between many views, elements, or layouts.

Q24. What Is Recursive In Cakephp?

To understand this topic follow this post :

Recursive in cakephp

Q25. What Is The Current Stable Version Of Cakephp?

3.0 (on date 2015-06-12).

Q26. Is It Possible To Have Multiple Validation Rules Per Field In Cakephp?

Yes its possible.

Q27. Using Cakephp, What All Are Drawbacks?

It loads full application before it starts your task. It's not recommended for small projects because of its resource-heavy structure.

Q28. How To Install Cakephp?

step1: Go to cakephp.org and download the latest version of cakephp.

step2: Cakephp comes in a .zip file,so unzip it.

step3: Extract the files in the localhost in the desired folder (for example:cakephp).

step4: Open the browser and run the URL localhost/cakephp

step5: Just Follow the instructions display on the page.

Q29. What Is The Name Of Cakephp Database Configuration File Name And Its Location?

Default file name is database.php.default.

Its located at "/app/config/database.php.default".To connect with database it should be renamed to database.php

Q30. How Can We Use Ajax In Cakephp?

By calling ajax helper and then using it in controller for rendering.

Q31. What Is Default Function For A Controller?

index() function

Q32. What Is Cakephp?

CakePHP is a free, open-source, rapid development framework for PHP. It’s a foundational structure for programmers to create web applications. CakePHP goal is to enable developers to work in a structured and rapid manner–without loss of flexibility. CakePHP takes the monotony out of web development.

Q33. What Are Controllers?

A controller is used to manage the logic for a part of your application. Most commonly, controllers are used to manage the logic for a single model. Controllers can include any number of methods which are usually referred to as actions. Actions are controller methods used to display views. An action is a single method of a controller.

Q34. Why Cakephp Have Two Vendor Folder?what Is The Difference Between Two Vendors Folder Available In Cakephp?

There will be two vendor folders available in cakephp frame work.

one in ” app ” folder and one in root folder

The vendor folder in the app folder is used to place the third-party libraries which are application specific.

The vendor folder in the root folder is used to place the third-party libraries which are used for multiple applications.

Q35. How Can You Set Custom Page Title For The Static Page?

To set a custom page title, copy-paste following code anywhere in your static page (.ctp) file:

$this->set("title_for_layout", "My page title");

Q36. What Is A Layout?

Layout in cakephp are used to display the views that contain presentational code. In simple views are rendered inside a layout.

Q37. What Is Cakephp Request Cycle?

A typical CakePHP request cycle starts with a user requesting a page or resource in your application. At a high level, each request goes through the following steps −

  • The webserver rewrite rules direct the request to webroot/index.php.
  • Your application’s autoloader and bootstrap files are executed.
  • Any dispatch filters that are configured can handle the request, and optionally generate a response.
  • The dispatcher selects the appropriate controller & action based on routing rules.
  • The controller’s action is called and the controller interacts with the required Models and Components.
  • The controller delegates response creation to the View to generate the output resulting from the model data.
  • The view uses Helpers and Cells to generate the response body and headers.
  • The response is sent back to the client.

Q38. How To Include Helpers In Controller ?

public $helpers = array(‘Form’, ‘Html’, ‘Js’, ‘Time’);

to in specific action use below code in that action

$this->helper[] =”helper_name”;

Q39. How Can You Make Urls Search Engine Friendly While Using Cakephp?

It's an automatic task that is done by cakephp.

Q40. How To Include Components In Controller ?

public $components = array(‘Emails’, ‘ImageUploader’, ‘Sms’);

Q41. Which Function Is Executed Before Every Action In The Controller?

function beforeFilter()

Q42. What Is A Component In Cakephp?

Components are packages of logic that are shared between controllers. They are useful when a common logic or code is required between different controllers.

Q43. Server Requirements For Cakephp?

Here are the requirements for setting up a server to run CakePHP:

  • An HTTP server (like Apache) with the following enabled: sessions, mod_rewrite (not absolutely necessary but preferred)
  • PHP 4.3.2 or greater. Yes, CakePHP works great in either PHP 4 or @
  • A database engine (right now, there is support for MySQL 4+, PostgreSQL and a wrapper for ADODB).

Q44. What Are Commonly Used Components Of Cakephp?

  1. Security
  2. Sessions
  3. Access control lists
  4. Emails
  5. Cookies
  6. Authentication
  7. Request handling
  8. Scaffolding

Q45. What Is Email Configuration In Cakephp?

Email can be configured in file config/app.php. It is not required to define email configuration in config/app.php. Email can be used without it; just use the respective methods to set all configurations separately or load an array of configs. Configuration for Email defaults is created using config() and configTrport().

Q46. What Is Wrong With The Below Validation Rule?

'email' => array(
    'rule' => array(
        'rule' => 'notEmpty',
        'message' => 'Please Enter Email address.'
    ),
    'rule' => array(
        'rule' => 'email',
        'message' => 'Entered Email address is invalid.'
    )
)

The problem is the first rule notEmpty will never be called because email rule will overwrite it.While using multiple validation rules for the same field you must keep the rule key "unique". In this case if we want to use multiple rules then, we can simple change the rule key names like,

'email' => array(
    'rule1' => array(
        'rule' => 'notEmpty',
        'message' => 'Please Enter Email address.'
    ),
    'rule2' => array(
        'rule' => 'email',
        'message' => 'Entered Email address is invalid.'
    )
)

Q47. What Is A Behavior?

Behaviors in CakePHP are associated with Models.Behaviors are used to change the way models behaves and enforcing model to act as something else.

Q48. What Is Mvc In Cakephp?

Model view controller (MVC) is an architectural pattern used in software engineering.

Model      : Database functions exist in the model
View        : Design parts written here
Controller : Business Logic goes here

Q49. What Is The Naming Convention In Cakephp?

Table names are plural and lowercased,model names are singular and CamelCased: ModelName, model filenames are singular and underscored: model_name.php, controller names are plural and CamelCased with *Controller* appended: ControllerNamesController, controller filenames are plural and underscored with *controller* appended: controller_names_controller.php.

Q50. When Cakephp Was Developed?

CakePHP started in April 2005.When a Polish programmer Michal Tatarynowicz wrote a minimal version of a Rapid Application Framework in PHP, dubbing it Cake.CakePHP version 1.0 released in May 2006.