Category Archives: Zend Framework

Firefox dynamic javascript fields not posting

Thanks to Tom for this, who complains “other developers never seemed to mention the problem in their blogs”, so here ya’ go. I ran into an issue I sank a little time into. My Jquery generated forms weren’t working in … Continue reading

Posted in PHP, Zend Framework | 1 Comment

Case insensitive URLs / module names with Zend Framework routing

class Ne8_Controller_Request extends Zend_Controller_Request_Http { /** * Retrieve the module name * * @return string */ public function getModuleName() { if (null === $this->_module) { $this->_module = $this->getParam($this->getModuleKey()); } return ucfirst( strtolower( $this->_module ) ); } } Then in your … Continue reading

Posted in PHP, Zend Framework | Leave a comment

Setting up helper paths in Zend Framework bootstraps

The Zend documentation is a bit sparse around this topic, it mentions setting up helper paths in the bootstrap, but does not go into detail. The Zend API documentation provides no clear cut answer either. For those of you who … Continue reading

Posted in PHP, Zend Framework | Leave a comment