Archive for the ‘Blogging’ Category

Post

One Search Supports Dynamic Prefixes

In Blogging on Feb 09 by jason

Now supporting custom table prefixes, the One Search WPMU Plugin (0.4.5) now correctly updates your views on blog additions, deletions, or deactivations. Download this latest version, 0.4.5, which is WordPress MU compatible up to version 2.7, rev. 1650.

Post

Multiple Plugin Update

In Blogging on Jan 14 by jason Tagged: , , ,

The No Feed WordPress Plugin and the One Search WPMU Plugin have been updated to work with WP 2.7 and WPMU 2.65, respectively. The No Feed plugin adds the ability to disable RSS feeds. The One Search WPMU Plugin allows users to search multiple blogs in a WPMU installation.

Please try them out and let me know your feedback!

Post

One Search WPMU Plugin Available For Download

In Blogging on Feb 07 by jason Tagged: , ,

Version 0.1 of the One Search WPMU Plugin is now available for download. I’m making it available so you can use and abuse it. Try it out and let me know how it goes for you.

Remember, this is beta (uh, more like alpha) software and has been barely tested. It works with:

  • WPMU  1.3.3
  • MySQL 5.0
  • PHP 5.2.5

As you use, it please let me know what version you’ve been able to get it running on. I appreciate any feedback that can improve the plugin.

Post

Multi-Blog Search Plugin

In Blogging on Feb 06 by jason Tagged: , , ,

I’ll be releasing a search plugin for WordPress MU. It’s doing the job, but I would love a few others to test it. If you’re interested, leave me a comment or email me.

Why another search plugin?

Well, this one is written specifically for the WPMU. There are a few plugins that already do this, but they all require some kind of core file hacking, running some back-end cron job, or modifying the default templates. I wanted something that was completely plug-n-play.

If you had an ideal global WPMU search plugin, what would be on your wishlist?

Post

Updated: No Feed Plugin

In Blogging,Technology on Jan 31 by jason Tagged: ,

I updated the No Feed WordPress plugin this week. It now accurately issues a “404 Error Not Found” for disabled feeds. It will also correctly display your default 404 template.

Get the update.

Post

Attachment Category Updater WordPress Plugin

In Blogging,Technology on Jan 30 by jason Tagged: ,

When you add an attachment to a WordPress post, the attachment inherits the post’s categories. However, future changes to a post’s categories are not reflected in the attachment. The Attachment Category Updater WordPress plugin fixes that.

This can be beneficial for tag or category searches, and even for custom attachment archives.

If you use it, let me know!

Download page: Attachment Category Updater WordPres Plugin

Post

No Feed WordPress Plugin

In Blogging,Technology on Jan 19 by jason Tagged: ,

I came across a thread in WordPress support about someone needing to remove all feeds. There was no need for password protection or limited access. They just needed the feeds deleted. Download the plugin that will remove all feeds.

I’d agree that simply deleting the feed-* files would be sufficient and acceptable. However, whenever I hack (or remove) core files, I add extra work for myself when it comes time to upgrade. The added work comes in remembering to delete those files with every upgrade.

The solution? A plugin. WordPress has a great framework for plugins. And that’s why there are so many great ones. So here it is… The No Feed WordPress Plugin.

If you use it, let me know!

Download page: No Feed WordPress Plugin

Post

Want More Comments?

In Blogging on Oct 16 by jason

During my recent switch, I decided not to import comments. The main reason? It was easier not to. I don’t regret it, but now my posts look less lively. So I need more! For business blogs, even old comments are important. They increase authority and can provide a bit of an ego boast if you’re looking for one.

So how can you encourage people to comment more? Here are a few tips:

How are people encouraged to comment on your blog?

Post

Favicon on Blogger

In Blogging on Oct 15 by jason Tagged: , ,

Favicons are those little icons in the Address bar and next to your Favorites. When I migrated to Blogger, I lost my custom favicon and inherited the default, orange “B.” To restore it to my original “j.u” favicon, I performed some first-grade slight-of-hand trickery (It’s really easy).

  1. Choose a favicon host.Although possible, Blogger doesn’t make it easy to upload non-post files. To get your favicon online, you need to sign up with an image host. I chose ImageShack since I had a few things on there already. Others you could use include Photobucket or even GooglePages.
  2. Create my favicon.If you’re creating your own, simply create a 16 x 16 pixel image. You can save it as a GIF or PNG. They should both work.I already had a favicon, although it was in .ico format. When I was on my own server, that was fine, and correct. ImageShack, however, doesn’t allow the uploading of .ico files. I had to convert my file to a standard image format. I chose PNG.
  3. Upload my faviconI uploaded my favicon. Imageshack gave me a few choices of code to use to display my favicon. I copied the “direct” URL and pasted it in the next step.
  4. Add favicon to templateOnce my favicon was online (it took less than 4 minutes), I inserted the appropriate HTML into my Blogger template.<link href="URL_TO_YOUR_FAVICON" rel="shortcut icon">

The whole process took less that 10 minutes, and almost less than 5. If you’re ready to dump that orange B for a spiffy new icon that better represents your blog, the four steps are all you need. If you need help with any of the steps, feel free to leave a comment.Update: If you’re getting some kind of parse error in Blogger, it’s probably looking for a closing tag. Try this code instead (note the added slash toward the end). <link href=”URL_TO_YOUR_FAVICON” rel=”shortcut icon” /> 

Post

Blogger Migration 404

In Blogging on Oct 12 by jason Tagged: , ,

With the migration to Blogger from WordPress, the most effort is going into dealing with post path differences. These differences will cause 404 (missing file) errors if not dealt with correctly. I wanted to be sure that people looking for my older WordPress posts would be appropriately redirected to the correct Blogger address.

My WordPress paths had this structure:
http://jason.ungos.com/2007/09/27/blog-downgrade/

On Blogger, the same post looks like this:
http://jason.ungos.com/2007/09/blog-downgrade.html

Here’s how I’m doing it.

  1. Setup a missing files host.
  2. Redirect visitor to new Blogger path.

Blogger Missing Files Host
The missing files host option was probably created to deal mostly with broken images or downloadable documents. I’ve expanded its use a bit by creating a custom 404 page that has some redirecting functionality.

The custom 404 page is a PHP script that:

  • Checks the URI
  • Determines what kind of document is being requested (post, tag search, etc.)
  • Semi-intelligently determines the new URI, and
  • Redirects the visitor.

Here’s what I have so far:

It’s neither elegant nor robust, but it achieves my main goal of dealing with old post links. I plan to develop this a little more to accommodate changed page names, broken images, and feeds.

Anything else I should add?