Jean is an Internet and Multimedia specialist with a keen interest in music, technology, business, sports and psychology.
Jean Galea
Internet Consultant in Malta
Jean Galea: entrepreneur and internet specialist. Holding an M.Sc. in Multimedia & Internet Computing from Loughborough University, Jean specialises in web design and development, email marketing systems and general internet consultancy.
Website Uptime/Downtime Monitoring Tools
Downloadable Software – FREE
http://website-monitor.org/website-monitoring-screens.php
Online Services - FREE
PHP Script – FREE
http://sourceforge.net/projects/phpwatch – MY FAVOURITE
http://www.mcmwebsite.com/free-website-monitoring-software.html
http://www.catswhocode.com/blog/how-to-easily-monitor-your-web-server-using-php
PHP Script – Paid
Tips for Converting PSDs to XHTML
Converting a PSD to XHTML + CSS with pixel perfect precision can be quite a job, especially if the design is complex. The link below gives alot of useful tips that will shorten your conversion time and make your job more pleasant. It also mentions quite an interesting plugin which helps you overlay a design over the top of developed XHTML so you can see the results in real time.
http://hokuten.net/2010/tips-faster-psd-html-conversions/
Script Libraries are now just a click away
JQuery Mouseover Fade Effect
Here’s a cool tutorial for a fade effect in jquery. You can use it to fade black and white images into coloured versions. Also includes a tip to modify it in order to make it work with WordPress.
http://bavotasan.com/tutorials/creating-a-jquery-mouseover-fade-effect/
Setting up WordPress Virtual Hosts with XAMPP
I like to set up virtual hosts to set my local site in the exact configuration I will be using on the live server. This is also helpful when working with WordPress, as in this way I don’t have to stay changing URLs when uploading to the live site.
First up, find the hosts file on your Windows system, and add the following lines at the bottom of the file:
127.0.0.1 yoursite.com
127.0.0.1 www.yoursite.com
I would like to access my site both with the www and without, so I include them both. Save the hosts file and close it.
Now go to your Apache folder in XAMPP and locate the conf files. The are usually located at <<local path>>\xampp\apache\conf\extra
Open the file named httpd-vhosts.conf with a text editor (Notepad or Textpad for example).
Find this line ##NameVirtualHost *:80 and change it to NameVirtualHost *:80, thus we have activated it.
Now your final step is to adjust the following code as per your installation (make sure you have the directory letter right and the address to your site correct), then paste it at the bottom of the file:
<VirtualHost *:80>
DocumentRoot “E:/xampp/htdocs/”
ServerName localhost
ServerAlias localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot “E:/xampp/htdocs/yoursite”
ServerName www.yoursite.com
ServerAlias www.yoursite.com
</VirtualHost>
<VirtualHost *:80>
DocumentRoot “E:/xampp/htdocs/yoursite”
ServerName yoursite.com
ServerAlias yoursite.com
</VirtualHost>
That should be it! Restart your server and everything should be working fine.
Some other guides:
This guide shows you how to do this in Windows XP, but you can also easily find how to do this on other Windows OS by doing a quick search on Google for “Windows (your version) hosts file location”
If that doesn’t work for you, try following the instructions here:
http://forums.whirlpool.net.au/forum-replies-archive.cfm/569991.html
Thanks for reading, please leave comments if you have any additional ideas...

