Building PHP with bundeled GD on Ubuntu
I was having trouble with some GD library functions not working in my PHP5.3 install on Ubuntu. Apparently Debian distributions do not compile PHP with the bundeled GD library, since it is a branch of...
View ArticleZend Framework ContextSwitch
Today was the day I got tired of constantly disabling the layout and viewRenderer when making ajax calls in the ZF project I’m currently working on. Today is the day I went and visited my old friend,...
View ArticleDomain Layer with Doctrine2
UPDATE: ctrllib has been implemented in CtrlSkeleton, providing easy database management for Doctrine entities and implemented ViewHelpers for Twitter Bootstrap. In a previous post I explained briefly...
View ArticleDomain layer and ZendFramework2 using Zend\ServiceManager
UPDATE: ctrllib has been implemented in CtrlSkeleton, providing easy database management for Doctrine entities and implemented ViewHelpers for Twitter Bootstrap. In the previous article I gave a brief...
View ArticleZend Framework 2 modules with subnamespaces
Zend framework 2 has a new module approach that lets you set things up almost any way you would like. When I create code for myself, I always use the same root namespace ‘Ctrl’. and I want to keep it...
View ArticleCustom default templates in ZF2
My previous post explains how I’ve set up my module structure, for the modules I create under my ‘Ctrl\Module\’ namespace. That post shows you how to configure the autoloader correctly, so the module...
View ArticleZF2 ServiceManager configuration walkthrough
ZF2 is all about extensibility, and the new ServiceManager and Config make it very easy, if you know how. Extensibility comes with some complexity, and it may be a bit harder to try and trace where...
View ArticleZF2 Skeleton Application with Doctrine and ctrllib
Building further upon the previous post, I’m gonna follow up with some more integration into ZF2. I’ve been building this class library as a ZF2 module. since it is only a class library, it does not...
View ArticleZF2 Skeleton Application with Ctrl\DomainService
After creating the domain models and updating the database accordingly, we need to create a ‘Ctrl\DomainModelService‘, for each entity, to manage it. This will allow for the models themselves to be...
View ArticleZF2 ServiceManager Custom ViewHelpers
The previous article explains how the ‘Zend\Mvc\Service\ModuleManagerFactory‘ sets initializers that gather information from certain keys in the configuration. A ‘ViewHelperManager’ is configured to...
View Article