Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6765751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:44:56+00:00 2026-05-26T14:44:56+00:00

I need to add new functionalities into /cake/libs/controller/pages_controller.php but I do not want to

  • 0

I need to add new functionalities into “/cake/libs/controller/pages_controller.php” but I do not want to change it directly because it is part of the core’s cakephp, therefor what I did was to copy “pages_controller.php” into “app/controllers/” and then I added new functions but I’m getting some errors like “The action display is not defined in controller PagesController”.

Notes:

  • /cake/libs/controller/pages_controller.php indeed has function display()
  • /app/controllers/pages_controller.php does not have display()

What is the problem? why I’m getting that error?

this is the /app/controllers/pages_controller.php:

<?php
class PagesController extends AppController {
    var $name = 'Pages';
    var $helpers = array('Html', 'Session');
    var $uses = array();

    function display_no_layout() {
        $this->autoLayout = false; // new line
        $path = func_get_args();

        $count = count($path);
        if (!$count) {
            $this->redirect('/');
        }
        $page = $subpage = $title_for_layout = null;

        if (!empty($path[0])) {
            $page = $path[0];
        }
        if (!empty($path[1])) {
            $subpage = $path[1];
        }
        if (!empty($path[$count - 1])) {
            $title_for_layout = Inflector::humanize($path[$count - 1]);
        }
        $this->set(compact('page', 'subpage', 'title_for_layout'));
        $this->render(implode('/', $path));
    }
}

My /app/config/routers.php:

Router::connect('home/', array('controller' => 'pages', 'action' => 'display', 'home'));
Router::connect('/successfully', array('controller' => 'pages', 'action' => 'display_no_layout', 'successfully'));
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T14:44:57+00:00Added an answer on May 26, 2026 at 2:44 pm

    When you create

    /app/controllers/pages_controller.php
    

    it overrides

    /cake/libs/controller/pages_controller.php
    

    So display() needs to be in your PagesController, given you are routing to it. You probably want to keep the display() as copied and write something like

    function display_no_layout() {
        $this->autoLayout = false;
        $this->display();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After inserting new html to DOM,I need to add some listeners to it. But
I need to add new records to my SQL database using C# and php.
I need add a new user group for mediawiki. The new group has more
I need to add a new column to a MS SQL 2005 database with
I need to add a new SELECT statement whose search condition include something like
I need to add default value column in SqlServer Compact....i am new to this
I need to add a specific column if it does not exist. I have
I need add new style for some DataGrid rows, depending on variable. For example:
I need to add 'ADD NEW ROW' cell to the table. And I add
I need to add new item to the hyperlink menu in Outlook 2007 (now

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.