I finally found some time to adopt one of my older web applications from Zend Framework 1.6 to Zend Framework > 1.8 (actually, I shifted to ZF 1.10.6). Actually, the only negative point I found was the confusing terminology (up to ZF 1.8 a plugin was a plugin, now a plugin is either a Zend_Controller_Plugin or a resource plugin used in the bootstrap).
However, the positive aspects are enormous. Your bootstrap is no longer the black sheep of spaghetti code in your familiy of perfectly designed object-oriented code. This (and the fact that you may write your own bootstrap resources) enables you to easily re-use your bootstrap in different applications!
Continue Reading…
- 1 pingback / trackback
I had to visualize some simple directed (acyclic and cyclic) graphs in one of the projects I am currently working on. If you google for packages that will help you to visualize graphs, you will probably find at least two JavaScript packages: JSViz and InfoVis. In this post I would like to share my experience with these two packages with you. Continue Reading…
- 1 pingback / trackback
Just in case you don’t know ZFDebug yet: ZFDebug is a precious litte helper that will help you when developing Zend Framework applications. It takes only minutes to install it and it will provide a lot of information like memory usage, loaded files, database queries used, etc.
Continue Reading…
- 1 pingback / trackback
Let’s make a bet: if you don’t have to maintain your (professional) web application within a few weeks after release, I owe you a pint of beer. Maintaining websites can be a complex tast: you may have to adopt your database schema, batch jobs, PHP files, and so on. As your web site will be down during these tasks, you should inform your users that your application is under maintenance and when it will be online again. This simple Zend Framework plugin might help you.
Continue Reading…
- 4 pingbacks / trackbacks
Ever wanted to have a fancy image gallery and slideshow on your website? This tutorial will show you how to implement an image gallery for your Zend Framework application using Dojo (see screenshot). Dojo’s image gallery already comes with some very nice built-in features like a thumbnail picker or a slideshow. Continue Reading…
- 2 pingbacks / trackbacks
As soon as you are working on your first bigger project, you will find out that there are several tasks that you’ll have to do again and again. No matter which programming language you are using, this is where Design Patterns come into play. Continue Reading…
- 1 pingback / trackback