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 6612677
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:07:36+00:00 2026-05-25T20:07:36+00:00

In my CakePHP (1.2) app, I have two actions that both use pagination –

  • 0

In my CakePHP (1.2) app, I have two actions that both use pagination – index and search.

In a previous question I learnt that, in order to apply a threshold score to search results, I need to use the HAVING MySQL keyword. Since CakePHP does not support this natively, I need to drop down to a custom query in order to accomplish this.

All the guides I can find to custom query pagination involve overriding the paginate() and paginateCount() methods.

Since I still want to be able to paginate normally on the index however, I don’t want to change the normal pagination behaviour in the model.

Is there any way I can (ahem) have my Cake and eat it too?

  • 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-25T20:07:37+00:00Added an answer on May 25, 2026 at 8:07 pm

    Actually if you CAN do it with find you CAN do it with paginate. You can take a look here

    But to be more especific you can add the conditions/limit/fields/contain/order etc that you use in find to the paginate function.

    I haven’t use group in the paginate but it SHOULD work 😀

    In your case you will have something like this:

    $this->paginate = array(
       'fields' => array(
            'Product.category_id',
            'COUNT(Product.hotel_id) as total'
        ),
       'group' => array(
            'Product.category_id HAVING COUNT(Product.hotel_id) > 1')
        )
    );
    
    $data = $this->paginate('Product');
    

    Hope it works, post a comment of your result, if it doesn’t work you will have to override it, because it is not accepting the group condition… though I think it will work since pagination is a find in the end.

    EDIT:

    You may try to do something like this:

    Override the paginate() and paginateCount() but with a tweak, sneak a condition so you can tell if its a pagination with having or not. Something like this:

    function paginate($conditions, $fields, $order, $limit, $page = 1, $recursive = null, $extra = array()){
       //if no having conditions set return the parent paginate 
       if (empty($conditions['having'])
           return parent::paginate($conditions, $fields, $order, $limit, $page, $recursive, $extra)
       //if having conditions set return your override
    
    //override code here
    
    }
    

    Then you do something similar in paginateCount(), that way you have a selective paginate. remember to do unset $conditions[‘having’] once it is not needed or remember to put it somewhere that doesn’t affect your find 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two applications in CakePHP, App A an App B. I want that
I have built a CakePHP app that creates appointments which have both a client
I have a simple cakephp app with table articles that has a cat_id column
I have a CakePHP app that is being moved to Sql Server from MySql.
In my CakePHP 1.2.5 app, I have a Profile model that belongsTo a User
I have a rather simple CakePHP app that uses the Auth component to restrict
In my cakephp app I have an Option model. In my option/index view I
I have a CakePHP 1.3 application connecting to Solr 3.3 search. There are two
I have a small cakePHP app that allows for user's to login and be
I have a class in CakePHP with several methods that contain these two lines:

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.