Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-05-31 Thread BenjaminB

same here, nothing helped so far

On May 31, 1:09 am, Mirko [EMAIL PROTECTED] wrote:
 I have exactly the same problem.
 All I get is a link with nothing but controller name in it: a href=/
 products/

 Greets, Mirko


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-05-30 Thread Mirko

I have exactly the same problem.
All I get is a link with nothing but controller name in it: a href=/
products/

Greets, Mirko


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-04-18 Thread mcgordon

I just ran into this problem and came here looking for more info.  I
haven't had a chance to look into it yet but when I find something
I'll post more.  Just wanted to let you know that yours is not an
isolated case.

Marcel


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-04-18 Thread gwoo

you have not shown what your custom routes are.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-04-18 Thread gwoo

oh, silly me forgot to mention that the router has full unit test
coverage. So, how about one that proves your case.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-04-18 Thread thequietlab

as for my custom route, it's just

Router::connect ('/sitewatch/*', array('controller'='favorites'));

I didn;t have the time to fight with it so I just make it work without
routes.. and I'm not yet into unit testing ;)

On 18 Kwi, 18:54, gwoo [EMAIL PROTECTED] wrote:
 oh, silly me forgot to mention that the router has full unit test
 coverage. So, how about one that proves your case.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-04-18 Thread jitka

try
Router::connect ('/sitewatch/:action/*',
array('controller'='favorites'));


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Paginator and custom routes problem (latest 1.2 alpha)

2007-04-18 Thread thequietlab

sorry, I had it like this :
Router::connect ('/sitewatch/:action/
*',array('controller'='favorites'));

What I posted was just part of my desperate tests ;)

On 18 Kwi, 22:08, jitka [EMAIL PROTECTED] wrote:
 try
 Router::connect ('/sitewatch/:action/*',
 array('controller'='favorites'));


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---