I had the same problem than you, Asger Hallas and Martel Valgoerad. However
if you update line 464 and remove the latest change done in
Zend_Controller_Request_Http (aka removing the minus 1) it's working fine.
So you would have:
Line 464: if ((null !== $baseUrl) && (false === ($pathInfo =
substr($requestUri, strlen($baseUrl))))) {
But this is just a temporary workaround...
Stephane
Michael Depetrillo wrote:
>
> in the Zend_Controller_Http_Request file I see the following line which is
> causing the behavior.
>
> Line 464: if ((null !== $baseUrl) && (false === ($pathInfo =
> substr($requestUri, strlen($baseUrl) - 1)))) {
>
> strlen($baseUrl) returns -1 making substr() take the last letter of
> $requestUri as $pathInfo.
>
>
--
View this message in context:
http://www.nabble.com/router-problems-tf2709929s16154.html#a7584582
Sent from the Zend Framework mailing list archive at Nabble.com.