ZF-8639: due invalid cache id Zend_Controller_Action_Helper crashes
Description
Zend_Controller_Action_Helper uses request URI as cache id. It generates an exception.
cache id is generated at library/Zend/Controller/Action/Helper.php:157
The exception came from Zend_Cache_Core "Invalid id or tag '/mycontroller/myaction' : must use only [a-zA-Z0-9_]"
Comments
Posted by Pádraic Brady (padraic) on 2010-02-06T09:13:40.000+0000
Patched in SVN - it's actually an issue with Zend_Cache_Core but cannot be refactored at this time. Instead the ID is now encoded to hexadecimal (hexdec()) to bypass the ID check and converted back using pack() on the other side.