Category: Blog

PHP changes

This is what I told myself when uncovering a little PHP code fragment that stopped working on one of my web sites. So, this is a reminder for those of you inattentive programmers like me: $DOCUMENT_ROOT = $HTTP_SERVER_VARS[‘DOCUMENT_ROOT’]; is deprecated and works no longer. You must now use the newest form: $DOCUMENT_ROOT = $_SERVER[‘DOCUMENT_ROOT’];. Be…

Be a beta-tester

If you have the heart of an adventurer, you may be interested to know that Ijust put in beta-test some new websites that I am working on. YLovePhoto.com (site specializing in digital photography) YLoveBigCats.com (about felines and other big cats) YLoveIllusions.com (optical illusions) YWantVisits.com (SEO, traffic optimisation and web site revenue maximization) Your opinion will…

WordPress 2.6 and images

Minor information about using WordPress v2.6 (the latest revison of this great blog/web-site-wrinting tool). I had a few difficulties to ensure that images where correctly aligned and displayed after the improvements in their presentation in WP2.6. For those really interested, I ended up adding the following to my CSS file: /*************************************/ /* Align code for…