controller
Getting Started With Zend Tool
Mon, 08/10/2009 - 10:20 | by philipnorton42The latest versions of Zend Framework come with a handy little tool that gets you up and running with a basic Zend Framework install within a few moments. When you have downloaded Zend Framework you will notice that in minimal and full there is a directory called bin. This seems to be intended to contain lots of different tools, but at the moment it contains three files that are part of Zend Tool.
Using mod_rewrite And Zend Framework To Display Dynamic sitemap.xml
Fri, 04/03/2009 - 09:48 | by philipnorton42Whilst creating a site the other day I thought about how I would manage the sitemap.xml file. This file is basically a XML file containing a list of URLs. Most major search engines understand (and look for) this file, so having it present on a site is a definite must.
A Useful Error Controller Class For Zend Framework Applications
Tue, 12/23/2008 - 15:58 | by philipnorton42One useful function of any application is to report on any errors that occurred. Zend Framework comes with a nice error controller system that you can activate by creating an ErrorController class.
The following is an ErrorController class that I use. It detects what sort of error occurred and displays a message to the user. It will also email a detailed report of the error to the server admins.