Which Lightbox?

This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub If you are bewildered by the choice of lightbox style javascript plugins available, you might find this page useful: http://planetozh.com/projects/lightbox-clones/ Its a well organised matrix of lightbox clones so you can compare features and choose the right one for your specific requirements. Read On →

Now Teaching Zend PHP Courses

This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub I’ve just finished my first delivery of a Zend PHP course module. It was the databases section of the higher structures course. Everyone seemed to enjoy it and I think it went really well. Read On →

Netbeans PHP Shortcuts

This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub Netbeans is great for speeding up development, but learning some keyboard shortcuts can speed things up even more. Here is a nice blog post I found Read On →

Virtual Box is Good - Virtual Box using Guest Additions is Great!

This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub If you use Virtual Box for virtual machines (eg testing web sites in IE, what fun) then this is of interest to you. There is another feature which I have only just discovered called Guest Additions. Read On →

Magento Backup Error Filesystem.php on line 234 + Solution

If you see this error message when trying to access the backups section of Magento Admin: Warning: Invalid argument supplied for foreach() in /home/*****/public_html/lib/Varien/Data/Collection/Filesystem.php on line 234 Then this simple fix is for you: replace (line 24): foreach (glob($folder . DIRECTORY_SEPARATOR . ‘*’) as $node) { with this: foreach ((array)glob($folder . DIRECTORY_SEPARATOR . ‘*’) as $node) { I saw this here, so all credit to them.

Be Broadband Counter Strike Connection Problems + Solution

This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub If you use Be or Be There broadband and the supplied Bebox (THOMSON TG585v7) and you are having connection problems when playing Counter Strike or other Steam games, try this solution (taken from here: http://www.beusergroup.co.uk/technotes/index.php/Steam_issues) This fix should correct the following issues: Servers in Steam/in Steam games suffer ping ‘spikes’ Difficulty/Inability to connect to servers Use of Steam/Steam games causes the BeBox to freeze/stall/restart (crash) Loss of connection to servers, or timeouts Poor performance (‘lag’) in servers If you are having problems with the fix supplied below then please post in this thread and I will try to help, but I will not be held responsible for any damage to Be equipment etc. Read On →