Re: Does pagination with custom urls really sucks?

2011-04-18 Thread stas kim
i think you need to make your route greedy OR add another route with page param, you will need to keep both routes one for default location and one for paged On Mon, Apr 18, 2011 at 1:29 PM, huoxito wrote: > im not able to make route class and paginator helper work as i want too i > guess. > if

Re: Does pagination with custom urls really sucks?

2011-04-18 Thread huoxito
im not able to make route class and paginator helper work as i want too i guess. if i try to reach example.com/controller/slug1/slug2/page:2 cakephp tries to find an action called slug1. Its like as if it ignores completely the route i defined. -- Our newest site for the community: CakePHP Vi

Does pagination with custom urls really sucks?

2011-04-18 Thread huoxito
Im trying to use pagination in a view like these: example.com/controller/slug1/slug2 so theres no action in the url but when i try to paginate it the best i could get was: example.com/controller/action/slug1/slug2/page:2 Could anyone help to exclude that 'action' part of the url, please? I'v