Archive for the ‘WordPress’ Category

Blog has been upgraded to WordPress v2.6!

Tuesday, July 15th, 2008

Yep.. that time again to upgrade my blog to the latest version, WordPress v2.6. Once again, I had to edit the /wp-includes/vars.php to force $is_apache to true because the server software reports back as WebServerX. Following is the server detection part of the script:

// Server detection
 
/**
 * Whether the server software is Apache or something else
 * @global bool $is_apache
 */
//$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
$is_apache = true;
 
/**
 * Whether the server software is IIS or something else
 * @global bool $is_IIS
 */
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;

Other than that, the upgrade went smooth! :)

Blog has been upgraded to WordPress v2.5.1.

Tuesday, April 29th, 2008

WordPress has recently released WordPress 2.5.1 which I have completed upgrading my blog to. It contains one critical security patch as well as a number of bug fixes. Surpass Hosting also upgraded their server over the weekend to use PHP 5.2.5 by default and MySQL 5. In doing so, the server software now reports back as WebServerX again and not Apache. So, I had to edit the /wp-includes/vars.php again to force $is_apache to true. Following is the server detection part of the script:

// Server detection
 
/**
 * Whether the server software is Apache or something else
 * @global bool $is_apache
 */
//$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
$is_apache = true;
 
/**
 * Whether the server software is IIS or something else
 * @global bool $is_IIS
 */
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;

The only difficulty I had was with the RAZ-Captcha plug-in. I was getting a fatal PHP error which was causing the Login and Registration pages to not appear:

PHP Fatal error: Cannot use object of type WP_Error as array in /(deleted)/public_html/blog/wp-content/plugins/raz-captcha/raz-captcha.php on line 590

I have disabled that plug-in for the meantime. I may look for a new plug-in to do image verifications on the Login and Registration pages. If I get ambitious, I may try and fix it myself but I doubt it, LOL.

Blog has been upgraded to WordPress v2.5.

Saturday, March 29th, 2008

WordPress has just released WordPress v2.5, which I have completed upgrading my blog to. I have also upgraded my plugins to their latest versions using the new plugin update feature and it worked great!

As always, I did have to modify the /wp-includes/vars.php file in the server detection section to force the apache detection to true so that it could modify the permalink structure:

// Server detection
 
/**
* Whether the server software is Apache or something else
* @global bool $is_apache
*/
//$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false;
$is_apache = true;
 
/**
* Whether the server software is IIS or something else
* @global bool $is_IIS
*/
$is_IIS = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false) ? true : false;

The reason is that Surpass Hosting’s value for $_SERVER['SERVER_SOFTWARE'] is WebServerX. I also updated my theme to include all the updated code in the default WordPress theme which mine is based off of. All in all a fairly painless process. :)

Blog has been upgraded to WordPress v2.3.3

Thursday, February 7th, 2008

WordPress has released a new security update and as such I have updated my blog to WordPress v2.3.3. I have also updated my plug-ins to their latest versions.

Blog has been upgraded to WordPress v2.3.2

Wednesday, January 2nd, 2008

Yes, that time again. A couple days ago, version 2.3.2 of WordPress was released which included some urgent security updates. While I was at it, I also upgraded a number of the plug-ins I use to their latest versions. I need to blog more, I actually do have a lot to blab on about, but now is not the time as I have raviolis cooking on the stove. Good stuff! Big Grin

Oh yeah, Happy New Year!! :)