Tag Archive for 'Wordpress'

GoDaddy Shared Hosting is Cheap…

I have been hosting my WordPress blog on GoDaddy shared hosting for the past year or so.

Typical Example of a Sexist Advertisement for GoDaddy...

It isn’t the best service in the world, and their advertisements are sexist (see above), but it is cheap as Hell ($3.99 a month). I eventually decided to pre-pay for a couple years and the price was reduced to $3/month. Supposedly, I could decide to quit the service at anytime and the rest of the time would be pro-rated and returned.

This price buys you service that is somewhat less speedy than other websites in the world, but that is to be expected when it costs significantly less than any other hosting provider (approximately half the amount). The service is bare-bones, but real people call you a couple times a year to remind you that they have 24-hour tech support. They even seem easy to reach and understanding via the phone.

The first six months I was hosted by this provider, the service was quite flaky, and sometimes I couldn’t use my WordPress dashboard or my webpage would be inaccessible. Other times, it was slow as molasses to make either render fully. More recently, the service has sped up considerably due to movement on host servers, which I found that I could complain about speed and be moved about if necessary.

If you don’t really care about your website being the speediest thing on the planet or bells and whistles, GoDaddy is a decent choice for hosting.

(0)

WordPress 2.6: Gears Enabled

Since I am using the inexpensive, but lame GoDaddy shared hosting, I jumped all over upgrading to the WordPress 2.6 beta in order to try Gears caching of the admin panel (by far the slowest part of the GoDaddy experience).

Gears Image

Thus far, the experience has been pretty similar to before; although, I have not had as many unexplained timeouts as the site ceaselessly tries to load a new page. There are a few other trick features for 2.6, although the image uploader seems to be broken for me (that may be due to uploading random files into Gears so that it would not get stuck on errors).

(0)

Assorted Thoughts on a Saturday Evening…

My wife is off getting drinks with a friend at the Forbidden Island bar, which is about a block away, so I decided to stay at home and clean my never-ending folder of bookmarks…

bookmarks

I realized, after I started to sort these wads of unsorted bookmarks, that they are less “gems” than I had at first imagined. Unfortunately, they could be sorted again into another file entitled “worth reading” while 80%+ could be deleted (and should have been if I had spent any time on them in the first place).

As I realize that my blog has abysmal loading times, I jettisoned the modified theme I was using and started using K2, the theme on which the theme I was using was based. This theme is lighter, and the javascript is not getting hung up as much… perhaps I will not have to spend the double the current, cheap rate for “good” hosting as I feared.

One nice thing about K2 is the fact that it uses a lovely custom sidebar, which I unfortunately discovered is non-compliant with WordPress 2.5. Installing this borked my Admin panel so that I could not login and post this awesome post.

Fortunately, I was able to query the internet Gods (well, Google) using the following text “Call to undefined function: wp_register_sidebar_widget” to find a solution which is described below (with a useful note added in fuschia for the PHP non-savvy)

To fix the error:
navigate to your K2 folder -> app -> includes
edit the file widgets-removal.php as below

Change the contents of the file from:

< ?php
if (get_option('k2sidebarmanager') == '1') {
remove_action('plugins_loaded', 'wp_maybe_load_widgets', 0);
}
?>

to [remove the space before ?php]

< ?php
if (get_option('k2sidebarmanager') == '1') {
remove_action('plugins_loaded', 'wp_maybe_load_widgets', 0);
if( is_admin() )
{global $pagenow; if( $pagenow == 'index.php' ) wp_maybe_load_widgets();
}
}
?>

This worked like a charm, pending a new version of K2 for WP 2.5.

Now off to delete 75% of the carefully sorted bookmarks…

Admin Panel Widened – Thanks Weblog Tools Collection!

The Weblog Tools Collection Blog (an excellent and timely reference of all things worthwhile that are WordPress) posted an informative FAQ on WordPress 2.5 today (reprinted from the WordPress site) that solved my wasted widescreen, real-estate problem with the admin panel in WordPress 2.5.

Here is the referenced extension to remove the Max screen width for the admin panel.

As you can see:

This makes all the difference…

(0)

WordPress 2.5 Dashboard Width Maximization…

After playing with WordPress 2.5 for a bit, I am beginning to appreciate that the heralded increased awesomeness is, in fact, present and better than suggested. In particular, the dashboard is actually useful for the first time ever.

That being said, now that it is useful, perhaps an officially supported option or userscript would be useful to utilize the full width of a widescreen monitor.

Now just to figure out a quick way to determine which are phantom tags and then delete them…

(0)