This is a follow up post to my previous “Zend Framework 1 and Doctrine 2 integration“.
I’ve created a new branch on my Github project “zf1-doctrine2″. The “modular_setup” branch shows how we could setup Zend Framework with the modular approach, while still be able to use Doctrine 2 as the ORM for each module.
Oh well, the [...]
Doctrine 2 is in beta. It is for sure one of the most exciting things that caught my attention recently.
As a Zend Framework user, I started looking into ways to integrate Doctrine 2 with Zend Framework (currently in version 1).
The same as any other times, the solutions are already out there. The integration’s already been [...]
I’ve recently read a lot about Zend Framework (Zend_Tool) integration with Netbeans. Today I decided to download the Netbeans 6.9 beta and setup everything on my local development machine (OS X).
Here is how I did it on OS X with XAMPP.
First, I included Zend Framework library via a PEAR repository hosted on Google Code.
sudo pear [...]
I recently reinstalled my MacBook Pro, and it proves that my earlier post on how to setup phpUnderCotnrol on Snow Leopard work well. I just followed the steps and phpUnderControl’s up and running again.
Now, I want to go into the details a bit to show the configurations I have done to use phpUnderControl to do continuos [...]
I came across an article made by Rob Allen (author of Zend Framework in Action) today. It gives us a very nice solution on how to host a Zend Framework project on a shared host.
The issue with running Zend Framework based application on a shared host is that sometimes you simply do not have the [...]
Are you sick of doing var dumps on browser screens or error logs when you need to debug some errors? Have you seen the .Net guys step through their code line by line to figure out what went wrong? With PHP, you can do the same. Here’s how I do it.
The IDE I use is [...]
Another box of tissue gone … runny nose syndrome continues … still cannot type or think …
Let me now blog something simple, but handy.
Problem … Zend Framework uses many types of plugins, how do we efficiently tell the application where to find the plugin files? For example, when we use a view helper, should our [...]
I want to integrate Symfony DI Container and Zend Framework together. It’s been put on the back burner for a while. After trashed a box of tissue because of my runny nose today, I finally got something up. And let me share it here.
I’m not going to explain what dependency injection means, and how the [...]
Thanks to Udo Schochtert (http://www.psiop.ch/), I become aware of this really nice Agavi style error handler. I basically followed http://www.iezzi.ch/archives/397 to get most of it going. However there are 2 little glitches I want to point out.
If you follow http://www.iezzi.ch/archives/397, most likely you’ll forget, or not even aware of this (Thanks to Udo again, he [...]
This is a followup to my previous post “ZF Authentication using Doctrine“. After posting my implementation of using a ZendX doctrine auth adapter. I got some feedback from Jon Lebensold from ZendCasts. The issue raised is that my implementation makes the controller fat, which is considered as a bad practice. I cannot agree more on [...]