Multiple Select Boxes

We were just doing an update to a registration form for a client, and found that it was actually pretty easy to set up using a popular contact form plugin, Contact Form 7. A standard select box created in Contact Form 7 lets you choose a single option each time. Lets say you have a list [...]

Multiple Select Boxes2017-03-14T17:31:47-07:00

Windows 10: A Primer

Windows 10 is coming. It's actually already here, but you might not know it yet. What does it mean for you? For starters, it's a FREE upgrade. If you are running Windows 7, 8, or 8.1 you should already have noticed a little notification icon in your tray asking you to reserve your free copy. [...]

Windows 10: A Primer2017-03-14T17:31:47-07:00

My WordPress Site was Hacked?!

Yes, the familiar cry of a client who woke up to digital graffiti strewn across their online home—or worse. For many small business owners (and even for medium and large businesses) websites can be their sole source of income, or at the very least a large part of their portfolio and presence in today’s business [...]

My WordPress Site was Hacked?!2017-03-14T17:31:47-07:00

WordPress Navigation Drill Down

I was looking for a way to drill down the menu structure in a wordpress widget that shows you all of the navigation pages. Turns out all you need to do is set it up using CSS, as wordpress already outputs all of the information you need to style it. What the widget had to [...]

WordPress Navigation Drill Down2013-07-26T21:01:43-07:00

ereg, eregi, ereg_replace is Deprecated

Since upgrading to PHP 5.3, there has been a lot of deprecated code that I’ve had to fix. Another of these is the family of ereg() eregi() and ereg_replace() – all of which can be replaced by preg_match(). While searching how to fix it, I came across a few sites that all gave similar results. [...]

ereg, eregi, ereg_replace is Deprecated2012-05-23T16:42:13-07:00

Joomla dispatcher.php and event.php Fix Errors

There are a few plugins that aren’t compatible with PHP 5.3+ and Joomla 1.5x, and they may show up like the error messages below: PHP Warning: Parameter 2 to plgContentEmailCloak() expected to be a reference, value given in /libraries/joomla/event/dispatcher.php on line 136 […]

Joomla dispatcher.php and event.php Fix Errors2017-03-14T17:31:48-07:00

Assigning the return value of new by reference is deprecated

So you’ve run into this error message, sometimes in WordPress or another CMS that utilizes code that is considered depreciated. This is sometimes caused by an update to PHP – which is what’s happened in this case. Essentially, Since PHP 5.3 assigning the return value is depreciated. […]

Assigning the return value of new by reference is deprecated2012-05-17T09:00:03-07:00
Go to Top