Re: Clueless...Help please

2011-01-11 Thread Brian Mckphee
I agree with the last few posters. You may need to tell your client to look at their code. Are you merely a hosting provider or are you a coder? On Jan 10, 8:13 am, javier0051 wrote: > Hi > > I am a completely newbie to cake php. A new customer has a site > developed with cake php and we recent

Re: different pagination across views (not controllers)

2011-01-11 Thread Brian Mckphee
I found my own answer. To anyone who needs this see the following. In your function in the controller that you would like to have the custom order on do this $this->paginate = array('order' => 'yourModel.yourColumn DESC'); $data = $this->paginate('YourModel', array('yourColumn' => 'condition'));