0
votes
1answer
26 views

Cake PHP paginate multiple tables of one model

community, there is a problem with multiple tables which receive their entries of the same model "Post" on the same page. When clicking a paginator-number the app will change the page for both tables. ...
0
votes
0answers
36 views

CakePHP 2 pagination gives 404 address not found error

I am developing an application with CakePHP 2.3 and am having a problem with pagination. When I click on any of the pagination links I am getting a /cab/ServiceDirectory/refine/page:2 (or which ever ...
-1
votes
0answers
25 views

CakePHP pagination not working properly

I am using cakephp 2.3 version. I need to wrap tag for current page number only and there should be no tag wrap for default numbers. I tried following: <?php echo ...
1
vote
2answers
40 views

How to maintain a variable in the url which is customized in cakephp?

What im trying to do here is maintain the variable 42 all throughout all pagination urls. I want my url to change from this /exams/take/42/page:2 to this /exams/take/42/items/2 Again,the number ...
0
votes
1answer
38 views

How to paginate in cakephp by using find?

This is my choices table id | question_id | content 1 1 bee 2 1 fly 3 1 dog 4 2 cat 5 2 bat 6 2 ...
1
vote
3answers
38 views

How to get choices of each item in a table in cakephp?

This is my choices table id | question_id | content 1 1 bee 2 1 fly 3 1 dog 4 2 cat 5 2 bat 6 2 ...
0
votes
1answer
71 views

How to change url pagination in cakephp?

I want my url to change from this /examinations/getchoices/page:2 to this /examinations/getchoices/item/2 I wonder how to do this. I've already tried changing in the routes.php. I've tried the ...
0
votes
1answer
52 views

How to combine multiple queries in paginate

in my app i want to integrate a distance search by zipcode. $result['zipcode'] = $this->Locations->find('all', array('conditions' => array('plz' => $param))); if (count($city['Plz']) > ...
0
votes
1answer
109 views

Pagination through ajax and showing post on the same page

I am new to Cakephp, and I m stuck with this thing. my code is working properly but now i need some modification in my code. when I try to paginate my view through different pages it works but as each ...
0
votes
1answer
82 views

CakePHP Ajax pagination problems

I am using cakephp 2.2.2 and I want to create a simple ajax pagination. I am following this ( http://book.cakephp.org/2.0/en/core-libraries/helpers/js.html#ajax-pagination ) and I cant seem to get it ...
0
votes
1answer
65 views

Cakephp Pagination in DropDown?

I'm looking for a way, to handle the Pagination-options in a dropdown menu. I'd like my users to select the sorting order in the same form with my filtering options, so when they hit "Send", ...
0
votes
1answer
30 views

CakePHP - How to reassign Paginator parameter

I'm facing a problem that I do not understand. In my controller: $this->paginate = $a; $list1 = $this->paginate('Model'); $this->paginate = $b; $list2 = $this->paginate('Model'); My ...
2
votes
2answers
262 views

How to pass parameters in pagination in cakephp?

I want to pass parameters in cakephp, how can I do that when I searched the sorted result and then click on 2 page of pagination it will not remember the url, I want to pass params which I selected ...
1
vote
1answer
71 views

dashboard timeline

I'm trying to implement a dashboard similar to facebook in cakephp (getting posts and post them to timeline and while you press see more it keeps retrieving posts from previous offsets) , but im still ...
3
votes
1answer
271 views

How to show selected value from dropdown pagination data in cakephp?

I have a problem in pagination I have three dropdowns which I selected the results are showing perfectly but the problem is here when I click on pagination numbers like 1|2|3 when I click on 2 the ...
0
votes
1answer
117 views

cakephp how to do pagination group by datetime but keeping the all the data

So, if I have a usagehistory database table like id file email date_send 1 1.txt A 2013-01-31 15:26:00 2 2.txt A 2013-01-31 15:26:00 3 3.txt B ...
0
votes
1answer
106 views

Sorting in cakephp pagination with SR.NO instead of Database ID

Hi guys i have a problem regarding cakephp pagination and sorting I have setup a paginated view as flows SR.NO | name | address| phone|... SR.NO is a simple counter with-in the foreach loop for ...
0
votes
0answers
124 views

cakePHP Combobox looses selection on pagination

this is my first page I create with cakePHP and I have the following problem/scenario: I'm creating a highscore-page using different models as the given databaes provides the information in different ...
0
votes
0answers
125 views

CakePHP 2.3.0: Virtual Fields Breaks Pagination

I am using a virtual field to get the count of data based grouped by a certain field. To do that, I use a virtual field in my model like this: public $virtualFields = array('org_type_count' => ...
0
votes
1answer
139 views

CakePHP Routers with language, slug, pagination

Using CakePHP 1.3 I am trying to get routers with language, slug, pagination, order . Currently I have these: Router::connect('/', array('controller' => 'pages', 'action' => 'index')); ...
0
votes
1answer
124 views

CakePHP 2.3 pagination named args

I create schema for my pagination: Router::connect(__('news') .'/'. __('paginate') .'/:page', array( 'controller' => 'news', 'action' => 'index'), array( 'persist' ...
0
votes
2answers
84 views

Cakephp pagination with joined tables

I want to join the "sectors" table to my pagination results. Here is what happens: I set the paginate variable so that it will join Sector: $this->paginate = array( 'joins' => array( ...
0
votes
0answers
102 views

CakePHP 2.2.4 cannot paginate results using HAVING clause and calculated field - Haversine formula

I'm trying to paginate a list of results when calculating distances using the haversine formula in CakePHP 2.2.4, but I'm getting errors around the calculated field in the having clause. I've ...
0
votes
0answers
66 views

Assign Custom values to the $paginator->numbers in Cakephp Pagination

heres my situation, I have a user dashboard with tabs in it: 1st tab shows user projects that are active 2nd tab shows user projects that are expired. along with a bunch of other tabs. The ...
1
vote
1answer
60 views

Cake PHP - How to access a special Model found by Pagination?

I have the following Code to get a special model related to another model related to actual object: (I want the Entry-model - in the Rubric-model-view) $this->paginate = array( ...
0
votes
1answer
191 views

CakePHP: feeding paginate() with a custom array

I'd like to feed CakePHP's paginate() function with an array I've built myself, like this: class SomeController extends AppController { var $paginate = array( 'limit' => 25, ...
1
vote
3answers
57 views

How do I update an array value from the database before passing it to the view in CakePHP?

I basically want to be able to pass a value through a function before sending the results to my view... public function listing() { $this->set('posts', $this->paginate('Post')); } So I ...
0
votes
1answer
170 views

php - cakephp - Specify hasMany columns / fields in pagination with recursive

I have looked through containable component and other questions here, but doesn't look like that can help me. Basically, I have paginate set to 1, which returns me something just like Array ( [0] ...
0
votes
1answer
80 views

Pagination for two different actions in the same controller

I have an action called index and another one called manage, both in PostsController. I want to implement pagination for both, and I've set up this class attribute: public $paginate = array( ...
2
votes
1answer
141 views

CakePHP 2.1 pagination for habtm

I am using cakephp 2.1 and developing an application, which contain the following table structures. 1. people(id, name) 2. movies(id, name) and 'people' habtm movies by tables as follows. 1. ...
-2
votes
1answer
50 views

pagination in view page with cakephp2

I am developing a simple web-mail client using cakephp2. For the mailbox list display I am successfully implemented pagination with Paginator helper Now when I click a particular item in the mailbox ...
3
votes
3answers
1k views

Bootstrap pagination with CakePHP pagination helper

I'm trying to get CakePHP's pagination helper to play nicely with bootstrap. That is, I want my pagination elements to look like bootstrap's but generated by CakePHP. At the moment I've got this on ...
0
votes
1answer
38 views

HABTM with Pagination

At first take a look at the following model structure: Model Building: id name Model BuildingRange: id building_id postalcode Ok, so BuildingRange $belongsTo Building and Building $hasMany ...
2
votes
1answer
79 views

CakePHP paginator case sensitive

When trying to sort data using the CakePHP Paginator, it is returning case-sensitive sort results. I have tried adding UPPER around the field I specify in the order query, but that doesn't seem to be ...
0
votes
0answers
124 views

CakePHP Pagination on JOINED related model throws error

Can someone verify if I'm screwing this up or if there is a bug in Cake 2.3RC1 I have a Category view, which has many Products. The products have many ProductPricing (multicurrency site). I need to ...
2
votes
1answer
88 views

CakePHP 2.1 Custom Pagination

I am using cakephp 2.1 and defined 3 tables as follows. `industries(id, name);` `movies(id, name, industry_id),` `trailers(id, name, movie_id);` I want to paginate the trailers for ...
0
votes
3answers
218 views

Using Paginate with conditions and contain with CakePHP

So, I'ld like to paginate one of my request. The "normal way" didn't seems to work very well, so, I made a little research and all the answers ware telling to do something like this : ...
1
vote
2answers
276 views

CakePHP Pagination global configuration

I am using CakePHP2, and not find how to change (reconfigure) pagination limit, example, from 20 to 30. There are a "global default limit" to set the number of records into the "paginator" ...
0
votes
2answers
375 views

Paginate a search result in CakePHP

I've set a simple search engine on my CakePHP project which looks like that : <?php echo $this->Form->create("Post", array( "action" => "search", "id" => ...
1
vote
3answers
602 views

CakePHP Pagination: how can I sort by multiple columns to achieve “sticky” functionality?

I see that this paginate cant sort two columns at the same time ticket is still open, which leads me to believe that what I'm trying to do is not possible without a workaround. So I guess what I'm ...
1
vote
3answers
359 views

CakePHP 2.2.4: Pagination Links

My site has many "pages". Pages are created for different topics and moderated by users (for example a page for Pirates of the Caribbean or a page for Justin Bieber). The page belongs to a category, ...
0
votes
1answer
224 views

How to change pagination url in cakephp for better seo

When I use CakePHP Pagination I get the default url like this: localhos/posts/index/page:3/sort:title/direction:asc But What do I have to change in the controller, the view and the routes.php to ...
1
vote
2answers
654 views

CakePHP Pagination Issue with displaying results

I´m struggling with the Pagination. I want to use the default functionality. The problem is that the links of the pagination-buttons (numbers, prev, next) doesn´t work. I don´t know how to pass the ...
0
votes
2answers
227 views

CakePHP Pagination of associated HABTM model in Model View Controller

I have two models - products and categories Category model HABTM Product When I create a View controller to view a single category, my recursive is set to 1 so I can load products in that category. ...
0
votes
0answers
88 views

Pagination of a non SQL field/coulmn in CakePHP

does anybody know with respect to cakephp wheather or not you can use the core pagination module to paginate a coulmn/field created on the fly? <table cellpadding="0" cellspacing="0"> ...
0
votes
2answers
266 views

CakePHP Pagination. Keeping Model Fat

I currently have this in my Model (Referer Model): public function getReferers($type = 'today') { if ($type == 'this_month') { return $this->_getThisMonthsReferers(); } elseif ...
0
votes
3answers
613 views

pagination weird behavior with search filter in cakephp

i wish to have a search form with one textbox, 2 dropdowns and a radio button (in cakephp). But this is to be done with pagination. Search and pagination work fine separately but not together. when i ...
1
vote
2answers
367 views

CakePHP 2.x Custom Route Pagination

I have a the following custom route (which works fine): Router::connect('/:city', array('controller' => 'dealers', 'action' => 'index'), array('city' => '[a-z]+')); With this route, I am ...
2
votes
1answer
200 views

cakephp pagination only sorting on some columns

I have the following code in a controller. I can sort by all fields except Claim.number and Payer.abbr. Anyone see why that might be? $this->paginate = array( 'fields' => array( ...
0
votes
2answers
98 views

How to pass a variable in the variable var $paginate with CakePHP

My pagination worked perfectly like this : var $paginate = array( 'Article' => array( 'conditions' => array( 'Article.visible' => true), ...

1 2 3 4 5