Setting the Time Zone for PHP 5.3.0+

While working with PHP 5.3 scripts, you may have run into an error that tells you you need to set the time zone for PHP 5.3.0.  This might happen when upgrading or installing a CMS or other script in your hosted or local web environment. A comment error message I’ve run across several times when working with MODX, SilverStripe, Processwire, etc. is:

date.timezone option in php.ini must be set in PHP 5.3.0+

Another common error message is:

To use PHP 5.3.0+, you must set the date.timezone setting in your php.in.

In this brief post I’ll describe a couple of different ways to deal with this.

Continue reading “Setting the Time Zone for PHP 5.3.0+”

Interview with Jon Lebensold – PHP and Zend Framework Programmer Extraordinaire

If you’re a PHP programmer and or have some interest in the Zend framework, you’ve probably run across Jon’s name or heard his voice over at Zendcasts, where he produces and shares video tutorials/podcasts covering all aspects of the Zend Framework and PHP. He has also produced more video tutorial series over at KillerPHP, including a PHP Shopping Cart, WordPress themeing, Advanced PHP, and more.

jonlebensold11. Hi Jon, can you tell us a bit about yourself? Where do you live, what do you do for a living, etc.

I’m a web developer living in Montreal, Quebec (that’s in Canada). I spend most of my days working on web applications as a freelancer and managing a website I started called Zendcasts. Zendcasts is a collection of online training materials centered around Enterprise PHP development. I’m also a member of the Bahá’í community and I maintain a blog at lebensold.net

Continue reading “Interview with Jon Lebensold – PHP and Zend Framework Programmer Extraordinaire”

MODx Evolution: Creating a Simple Custom Snippet Part 4 – Optimize with Caching

Part 0: Introduction
Part 1: Write and Test the PHP Script
Part 2: Create the Snippet
Part 3 – MODx API, Placeholders, Chunks

In the fourth part of this brief series on creating a custom MODx Evolution snippet, we’re going to do some optimizing to make our snippet a little more efficient.  So far the snippet seems to be working as expected and is pulling in the feeds as needed.  However, it’s a little inefficient.  The way things are set up now, every time someone refreshes the page, the script fetches a new copy of the rss feed from the coding pad, or whatever source you’re pulling your feeds from. If you have a heavily trafficked site where people spend a lot of time on your site and visit many pages (thus, for example, constantly refreshing your snippet call in the sidebar), this can be resource heavy on both your side slowing your website down, and also on the web server that you’re pulling the feeds from.  We can mitigate this by implementing caching.

Continue reading “MODx Evolution: Creating a Simple Custom Snippet Part 4 – Optimize with Caching”

Configuring Zend Framework to Work with a Local Development Environment

The NETTUTS web development blog  just posted a tutorial screencast that I did on how to configure the Zend Framework and Wampserver to work together.  The steps that I go through to do this can be adapted to any Apache, MySQL, PHP stack with some minor changes.

The Zend framework is an open source, powerful PHP application framework that’s made by the people behind PHP.  By following the steps in this screencast you will be able to configure your local development to work with the Zend framework.

How to Set Up Virtual Hosts on your Local Host

In this screencast I walk you through how to set up virtual hosts on your local development server, specifically Wampserver on Windows.

As promised in the screencast I am appending a written version of the process on this post for your reference.

Continue reading “How to Set Up Virtual Hosts on your Local Host”