Archive | PHP RSS feed for this section

Catching PHP Errors, Warnings and Notices

PHP raises errors in a different way depending on the function or object you are dealing with. This presents a challenge for consistent error handling in an application because errors, unlike Exceptions, cannot be caught with a try/catch statement. This article will explain how to tell PHP to throw Exceptions instead of errors so that [...]

4 Comments Continue Reading →

HungryFEED RSS Plugin for WordPress

I decided to delve into the world of WordPress plugin development this week.  I’m a contributor to a site for film camera gear and we have a page that lists equipment for sale.  We wanted to pull in an RSS feed from eBay and display it on a page.  There seems to be a WordPress [...]

2 Comments Continue Reading →

Phreeze Running as a Joomla Component

Our company has decided on Joomla to manage our primary website, however we’ve been writing code using our own Phreeze framework for several years and have a lot of time invested in these applications.  We’re now trying to integrate all of our web properties and provide single sign-on, which is a challenging task.  It occurred [...]

Leave a comment Continue Reading →

Install WordPress 3 with Multiple Domains

WordPress 3 now includes the features that were previously available as WordPress MU.  “MU” stands for Multi-User (or Multi-Site) and this lets you to run multiple blogs all from a single WordPress installation.  This walk-through will help you configure WordPress to manage multiple sites, each with their own second-level domain (SLD). As you go through [...]

60 Comments Continue Reading →

PHP behaves erratically when writing to files

This is such a dumb error  but I wanted to write it in case anybody else becomes mystified if a stable PHP application starts suddenly behaving erratically when writing to files. The cause of this weird behavior could be that your server’s hard drive has run out of free space.   To check your server’s drive [...]

Leave a comment Continue Reading →