OK - so I have discovered that Windows+Apache has this problem. It is
described here:
https://trac.cakephp.org/ticket/2583
However not described adequately. The posted "workaround" is
incomplete and unclear as there is no obvious argSeparator attribute.
After some digging I discovered how to change the argument separator
without changing the core inside cake.
In your routes.php file add a call to connectNamed(). If you are
already using this function, you will likely already have values set.
Simply add the argSeparator array name/value pair and use whatever
separator you like. In my call shown below I modify all routes to use
the separator of the caret (^).
Router::connectNamed(true, array('argSeparator' => '^'));
Hope this helps someone.
z
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---