Category Archives: Development

Short URLs with Zend Framework

First up, what's a short URL? A short URL is just that; a url that is as short as it can possibly be, so that takes up as few characters as possible when it is used in a twitter message, … Continue reading

Posted in PHP, Zend Framework | Tagged , , , , , | Leave a comment

Caching files statically with Zend Framework

I've been using ZF (almost exclusively) since version 0.10 or so in 2006. It's come a long way since then, and the folks involved with it are very skilled and methodical. It's quite fun to see new versions roll out … Continue reading

Posted in PHP, Zend Framework | Leave a comment

Bootstrapping Zend Framework via ErrorDocument 404

Traditionally Zend Framework applications are bootstrapped using mod_rewrite as recommended in the manual and various tutorials. For non-Apache servers such nginx, similar methods are provided. But it's also possible to use Apache's ErrorDocument configuration to kick off a Zend Framework … Continue reading

Posted in PHP, Zend Framework | Leave a comment

MySQL Replication for Offsite Backups

I'm cheap. I tend to run pet projects on shoe string budgets. For one, it's just a good habit. It's easier to increase spending when it's really necessary (after some growth and revenue) than it is to turn off a … Continue reading

Posted in Development | Tagged , , | Leave a comment

Zend Framework: Coding by Convention - Part 2

A number of components sometimes accept strings or arrays as parameter. Developers coming from statically typed languages might cringe a bit, but this is really just about taking advantage of the flexibility of the language. With flexibility comes freedom and … Continue reading

Posted in PHP, Zend Framework | Leave a comment