My Blog
contains PHP, Web and business/entrepreneurial related content. Please join in the conversation!
Tag Archives: zend framework
Zend Framework Use Filter with Paginator
By default, when using the Zend Paginator, the result set will come back as an array. If you are using a paginator associated with a db result set, and that db has a class defined for its row, it will … Continue reading
Creating a custom Zend Framework Body Script helper
It drives me nuts that the best practices with javascript that is not required for the initial rendering of your application is to be placed at the bottom of the document, yet frameworks (like Zend Framework) do not support that … Continue reading
Split Read/Write Connections in Zend Framework Database on the Application Level
I’m no sys admin, so I can’t be sure, but I’ve seen lots of issues with using things like MySQL Proxy to fully separate the write and read queries in an application. Maybe it works, I don’t know… but I … Continue reading
Zend Framework Static Router URLs Not Found in Zend Navigation
For a CMS I’ve been working on, there are a number of custom routes that are added statically in a loop. These point to specific ID’s of articles on on the default module’s page viewing controller/action. Sometimes these routes need … Continue reading
Zend Framework Authentication: Let the user know if it is their fault
One of the things that is irritating is logging into a website with credentials that you know are right, only to have it fail. Then, later, you find that the site was malfunctioning. By then, maybe you requested a new … Continue reading
Service Class Methodology
There has been a lot of discussion on forums and throughout the object oriented PHP programming community about service classes. This is just intensified by the Zend Framework model of development coupled with the changes in their design/architecture and vocal … Continue reading
Zend Framework Front Controllers vs Bootstrap: Round 2
This article is the follow-up to the original article. There was some discussion on Twitter regarding the original version of my article about putting most of your site’s setup in the front controller plugins in Zend Framework. However, I haven’t … Continue reading
Testing Outgoing Email with Zend Framework
I was creating a new application with Zend Framework at work the other day and I started using my technique that I described here by adding the original email in my email address using the + sign. However, the current … Continue reading
Zend Filter Presentation
Thanks to Zend and their community organizers for the opportunity to do a webinar today. I have uploaded my slides from the presentation here: Zend Filter Presentation
Adding Subdomain Routes for all URLs in Zend Framework
All the examples I’ve seen for pulling information from subdomains are from the hostname router directly correlating one subdomain as a value to a single controller/action combo. This means they map username.website.com to something that basically looks internally like website.com/user/profile/var1/username. … Continue reading
