Categories
Reviews

8 WordPress Plugins for Feed Subscribers

Today in our wordpress plugin series, we will explore plugins related to feeds. Feed is the reason, I love blogs over static websites.

If you are seriously into blogging, then one thing which matters most is feed readers. Many bloggers, including me, display their FeedBurner subscribers count proudly at prominent places on their site.

So here is list of plugins which will improve your feed count as well interaction with feed subscribers.

1. WWSGD Plugin

ADVERTISEMENT

This plugin which uses name of one of the top web celebrity Seth Godin, allows you to display a subscription reminder message above or below blog post.

You can control position & content of message. Also you can customize if message is to be displayed always for only or few initial page views.

Link: What Would Seth Godin Do by Richard K Miller

2. FeedBurner FeedSmith Plugin

ADVERTISEMENT

If you use FeedBurner and love its subscriber count chicklet, then this plugin is must for you.

WordPress have lots of feed formats and most probably you had burnt only one of them with FeedBurner. Now if a user access your wordpress feeds via other URLs then their subscription will not be counted towards FeedBurner count.

This plugin will take care of this. You just give it your FeedBurner URLs and it will redirect all wordpress custom feed requests to your FeedBurner feed.

Originally developed by Steve Smith, this plugin is now officially maintained by FeedBurner.

Link: FeedBurner FeedSmith Plugin by Steve Smith & FeedBurner

ADVERTISEMENT

3. Full Text Feeds

There was a bug in wordpress which used to cut your feeds in the middle of the post. This behavior used to annoy blogger who like to publish full text feeds.

I am not sure if this bug is fixed in latest version of wordpress as I have modified wordpress core feed files completely when applying firefox full feed hack.

Anyway, if you see partial feeds even after choosing option to display full feeds, you can use this plugin to overcome wordpress bug.

Link: Full Text Feed Plugin by Ronald Heft, Jr.

ADVERTISEMENT

4. URL Absolutifier WordPress Plugin

URL Absolutifier changes all relative URLs in posts to absolute URL, to make the entries work in feed readers that don’t work with relative URLs.

I used a relative URL trick for higher earnings from AdSense product referrals long time back. If you are not sure about your usage of relative URLs then I will strongly recommend you should activate this plugin and then just forget it. I really feel this should be default behavior of wordpress.

Link: URL Absolutifier WordPress Plugin by Scott Yang

5: Feed Footer Plugin

ADVERTISEMENT

This plugin allow you to customize footer text of each post in feed completely. I use this to show referral ads in my feeds. Please do not try AdSense or any JavaScript code in Feed Footer. It will not work as feed readers ignores JavaScript.

This plugin is really basic, but I don’t mind taking some efforts for some extra bucks.

Link: Feed Footer Plugin by Sherief Mursyidi

6. Similar Posts for Feeds Plugin

Many time, by giving full text feeds, blogger feel they are loosing page-views as a reader may never check their blog.

I use backlinking to my old posts whenever possible to bring readers back to the blog. But often such links go unnoticed or you may not find old post to link back if you are writing on a new topic.

Then its always good idea to display few related posts at the bottom which often attracts clicks. Of course too many links may annoy your reader. So do not show something like 20 related post!

Link: Similar Posts by Rob Marsh

7. Feed Widget Plugin

This plugin will add a WordPress widget, which will display links to various relevant feeds for your WordPress blog. It will always at least display links to the two standard feeds: All Entries and All Comments. It will also display links to category feeds, post feeds or search feeds, depending on the current page being viewed.

I used this long time back. But now this blog have three top level feeds, so I guess using this plugin here will result in too many options. I will definitely add this plugin to my orkutfeeds blog.

Link: Feed Widget Plugin by Ketsugi

8. RSS Footer

This is very simple plugin. It allows you to insert any message including HTML code into the feeds. You can also choose if added message is to be displayed at top or bottom of the post.

You can use this plugin for advertising instead of above Feed footer plugin. Main difference is, RSS Footer adds same footer at the end of every post, while above Feed footer allows you to add different footer for each post.

One plus point with RSS footer is, it allows addition of link back to your original post, which is good SEO as explained by Daniel Scocco.

Link: RSS Footer Plugin by Joost de Valk

That’s it for the day! Tomorrow I will post more about plugins which will improve navigation of your wordpress blog.

Between if you like this post subscribe to our RSS feed or email updates. 😉

Categories
Tutorial

Moving a WordPress blog from a subdirectory to subdomain preserving permalinks

Many bloggers like to keep their blog in either subdirectory (ex: something.com/blog) or subdomain (ex: blog.something.com). Generally personal blogs are hosted under subdirectories and blog dedicated to services hosted under subdomains.

Anyway, if one want to move his wordpress blog from a subdirectory to a subdomain or vice-versa, it is possible to do so without loosing permalinks and traffic from search engines.

Listed below are steps with case of moving our orkutfeeds service blog from http://www.orkutfeeds.com/blog to http://blog.orkutfeeds.com/. You should change things accordingly as per your configuration.

[Note: Please configure subdomain first, it you are moving to a subdomain. Please create a subdirectory first if you are moving to a subdirectory.]

ADVERTISEMENT

1. Configuring wordpress

Login to your wordpress dashboard and go to General settings tab. You will see WordPress address(URL) & Blog address(URL) settings. Change them to target URL.

In our case it was http://www.orkutfeeds.com/blog which I changed to http://blog.orkutfeeds.com/.

ADVERTISEMENT

Change both URL settings carefully as one character mistake may result in disaster. Don’t worry nothing will be lost, only you will need to find a wordpress expert to fix it.

So after you are sure, press Save Changes button. You will see something like URL not found error but don’t get panic. It is expected as we haven’t moved/copied our blog files to subdomain yet. If your blog is high traffic blog then you may copy your blog files first as explained in next step.

2. Moving/Copying Blog Files

Moving files:

Now this step is trickiest one and your smartness will decide how long your blog will remain down.

ADVERTISEMENT

If you have shell access to your webserver and its Linux/Unix based server then you can use mv command to move all blog files at once. It took less than 1 second in orkutfeeds case!

ex: $mv path_to_domain_dir/blog/* path_to_subdomain_dir/

Note that, here path_to_domain_dir and path_to_subdomain_dir should be replaced by actual paths as per your server configuration.

If your blog is high traffic blog, then you may open shell first and type such command in advance. Please DO NOT hit enter before performing step 1.

Also DO NOT attempt moving files using FTP clients.

ADVERTISEMENT

Copying files:

This is for users who do not have shell access or have Windows server. This is good for high traffic site also.

Copy all files from one location to another location via FTP. Alternatively, you can use shell command to copy files if reason for this approach is high traffic to your site.

How you do this is your choice!

Once all your blog files are available at new location and you done with configuring wordpress as mentioned in step 1, you now either waiting on an error page, wordpress login page or settings page again.

ADVERTISEMENT

Just refresh no matter what is next to your eyes. You should see now your wordpress blog at new location. If you don’t contact me ASAP, with as much details possible.

3. Creating/Updating .htaccess file to preserve permalinks

This part is essential to maintain permalinks and SEO juice. Again this is divided in two ways depending on your goal.

Moving from a subdirectory to a subdomain:

Under root directory of your site (this is different than root directory of your blog), create (or update if already exist) a .htaccess file. You need to add only 3 lines to it as shown in following example:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^blog/(.*) http://blog.orkutfeeds.com/$1 [R=301,NC]

Please make 2 change to last line:

  • If your blogs’ subdirecotry have different name like wordpress, then replace first occurrence of blog with its name. (Ex: For wordpress, change ^blog/ to ^wordpress/)
  • Replace http://blog.orkutfeeds.com/ with your subdomain URL. DO NOT forget trailing slash (/).

Also delete or rename ‘blog’ subdirectory for .htaccess file to work.

Moving from a subdomain to a subdirectory:

Under subdomains root directory, create (or update if already exist) a .htaccess file. You need to add only 3 lines to it as shown in following example:

Options +FollowSymlinks
RewriteEngine on
RewriteRule (.*) http://www.orkutfeeds.com/blog/$1 [R=301,NC]

Please make 1 change to last line:

  • Replace http://www.orkutfeeds.com/blog with your new blog URL. DO NOT forget trailing slash (/).

Thats All! Now all permalinks, including links indexed by Search Engines should work fine.

Ideally, if you can perform all above steps at the same time, the whole process will go unnoticed without any downtime.

If you have any questions/suggestions please feel free to use comment form below.

If you like this post, please check our ongoing series on best WordPress Plugins.

Categories
News

Orkut Added SMS Notification for Scraps!

Orkut launched one of the most awaited feature – Notification via SMS. This feature let you receive new scrap notifications, get friend info, and more from your mobile device.

Just go to http://www.orkut.co.in/MobileSetupSettings.aspx and you will see option to specify your mobile number to receive notifications.

Also check out SMS commands page for SMS orkutting. I think SMS command will work only in Brazil.

As of now this new feature is available in India and Brazil only. Moreover in India, only Aircel, BPL, MTNL, Reliance, Spice and Tata networks are supported. This is really bad news for me as I use Airtel & BSNL.

Do not forget to check price details for your carrier as this service may cost you some bucks.

I hope this will get better soon. Thanks Sithin… 🙂

Link: http://www.orkut.co.in/MobileSetupSettings.aspx

Related: Use Orkut from Mobile

Categories
News

New & Better Facebook is here. Try it Now!

After waiting for so long to update their user interface, Facebook finally released much awaited new interface.

You can see above Try it now link in top-right corner.

Below in new homepage which is much more organized and light-weight. Also common tasks Status Update, Adding Photos & Videos, Sharing Link are easily accessible as you can see below.

Also News Feed now can be browsed for items of interest.

As I discussed in recent Orkut posts. Facebook application used to make profile pages a lot heavier. Now profile pages are also changed drastically.

Profiles pages are now multi-tab with separate tab for wall, Info, Photos & Boxes. I hope no application will ever come out of Box now… 😉

Also now you can directly post photos, videos, etc from your facebook profile page. Moreover you can filter your wall posts now.

I am still exploring and will update soon if I find something really great. All I can say… I am loving it! 😉

Link: http://www.new.facebook.com/

Categories
Editorial

Series Writing – A new blogging experiment! [Editorial]

Starting from this week, I am trying a new experiment – Series writing.

Series writing is proven effective for many top bloggers. It demands much more consistency than normal blogging but I have more reasons to try this. In last few weeks, I have noticed that I blog about too many topics here. As a consequence, I waste a lot of time deciding what topic to write on.

Personally, I am into many things like blogging, web design, wordpress development, site administration, computer security, SEO, freelancing, etc. So it was always harder for me to choose a niche. So I have decided to take one topic at a time exclusively to blog about.

Of course, I will keep you updated on Orkut, iPhone and other my favorite topics which I closely monitor over the Internet. Series writing doesn’t mean you just blog on one topic. It just means you blog more on a particular topic.

ADVERTISEMENT

This week I will be posting more on WordPress plugins. This series is intended to help new wordpress bloggers gain most from from countless wordpress plugins.

In my first series, I will post about plugin usability, my favorite wordpress plugins and similar things which can help you as a wordpress user.

If all goes well, I will also write a wordpress plugin series for developers. Yes, I am into commercial wordpress development and I just got paid $300 for my first private wordpress plugin. (project link)

Next I have really great series almost complete on Google Adsense but I will put it live in September once AdSense for product referral retires. I am also planning to cover series on online money-making, SEO, security, etc.

Please let me know if you like to read more about a particular topic. I hope you will enjoy this new experiment.

First post will be live in few hours. Thank you all… 🙂

Categories
News

Orkut Allows Only 25 Orkut Apps!

Recently Darnell and Gaurav posted about Orkuts limit of 25 Orkut Apps. Many users who always want unlimited things might be surprised to know this limit. But if you look carefully this approach have a good side and for the first time I feel this limit is something, Facebook should have copied from Orkut.

Good for users…

  • Each Orkut App can eat up some space on Profile page. While this is optional, almost every app developer want maximum visibility for their app and thus use profile box no matter if its essential. Its sort of advertising!
  • So each Orkut app you add, clutter your Orkut profile pages. Which makes your profile page so heavy that it takes forever to load them on slow connection. On facebook, I know some profiles which takes more than 10MB data transfer to load completely.
  • Since you rarely check your own profile, this may seem fine to you. But this is surely a big turn off and it may create bad impression. It makes you look like highly disorganized person.

Good for app developer…

ADVERTISEMENT
  • I observed on facebook, there are atleast 10 duplicates of every popular apps. And as facebook have no limit, also a spammy invite friends option all duplicates get some exposure.
  • Users have no app limit so they never bother about removing these apps even though they rarely use them. This way low quality apps manage to survive, even though their better alternative already exist.
  • On orkut as every user has limit of 25 apps, they will only keep apps they really use. So when a new developer joins open social, he will think of creating quality app so that his app gets a place in a users favorite 25 apps.

Well, this is my opinion and I don’t think it will be acceptable to majority users and specially to orkut apps developer community. But if you look for longer run, you will wish such limit to exist forever.

Like others, I do think that this limit will be changed or removed completely in future by Orkut, mostly owning to commercial reasons.

Let us know what do you think!

Happy friendship day to all our readers… 🙂

Categories
Contest

Free Rapidshare Premium Accounts Giveaway

Gagan over 84productions is giving two free premium Rapidshare accounts with two months validity.

If you are a blogger then you can enter this contest. All you have to do is to subscribe to 84productions newsletter and write a post about it.The contest is valid till August 5, 2008. For rest details, check this contest post.

Rapidshare is most famous file hosting service so I think it will be hard to find a person who doesn’t want a Rapidshare premium account.

Anyway to all bloggers, whether you win or not this contest, please note the cool way of promoting your blog by organizing such giveaways. 🙂

Link: Content page at 84productions

Update:

The contest is closed. You can keep an eye on this blog for any other give aways.


Categories
Tips

Saving Display Pic of Any Orkut Profile…

This is one of the most wanted topic related to orkut.  Saving display pic of any orkut profile is not just as easy as you are thinking. Right clicking on the profile picture and using “save picture as” option doesn’t work. So solution is to install Single Click Profile Optimizer, a grease monkey script. (how?)

After installing it,  just right-click on the profile picture given in your friend list or scrapbook further click on the picture that is opened by the profile optimizer and click on the option of save picture as….

Check the screenshot for further clarification…. (click on it for larger image)

Link: Single Click Profile Optimizer (by Dhruva Sagar)

Related: Save background images with just one-click

Categories
Tips

How To Recover a Deleted Orkut Community!

This is one of the most frequently asked question to me. I myself wonder why it took so long for me to answer it! Anyway here is my post on recovering a deleted orkut community…

First if your community still exists and in your control, better add a co-owner for your community. This will be helpful in circumstances where…

  • your (community owner’s) account gets deleted
  • community ownership is transferred
  • ADVERTISEMENT
  • the community is deleted (The co-owner can undelete it and become the community owner.)

Next comes scenario where your community is deleted by mistake or by someone who has access to your account.

There is a form on Orkut which you can fill up for mistakenly deleted communities. I am not sure if this still works as it is quite old. Also I am not sure if it will work if someone first transfer your community to other account and then delete it!

Please note the difference, if someone with access to your account deletes your community directly, it can count as a mistakenly deleted community.

ADVERTISEMENT

Also for filing request to undelete your community you will need to specify a link to it. So please save a link to your community at some place which you can easily access.

You can get link to your community by opening it in a browser. When its opened, address bar will show community link only.

What if I do not have community link?

The only think matters is your community ID. Rest URL is always same like http://www.orkut.com/Community.aspx?cmm=[SOME_NUMBER]

ADVERTISEMENT
  • So do you remember a number after cmm in its link like 19587001 in above example?
  • Or have you ever posted any link related to your community like link to a topic, poll, etc in any scrap or on web. Then try to find that link and find number after “cmm=”.
  • Or used orkutfeeeds to subscribe to your community or any topic from it? In this case you can find cmm=ID in your feed reader. Just go through read items.
  • Or just try searching your community using Orkut’s search feature. If it has recently deleted then it may show up in search results there.
  • Have your ever saved your community logo on your PC? If yes then try to find that image. If you haven’t renamed it, it will have name like <community_id>.jpg (ex: 19587001.jpg)

If you can’t obtain your community id, then you cannot request orkut to undelete it. 🙁

This is all I can do! 🙂

Link: Orkut Contact Form to Request Community Undelete

Related: How-To add co-owners to your orkut community

Categories
Editorial

Open Apology To All DW Readers… [Editorial]

Those who have noticed it yesterday, our author Saurvajit published a post announcing Scrap All feature officially arrived on Orkut.

It turned out to be a firefox extension he was using and being editor of this blog I accept my failure to crosscheck facts before approving article for publication.

I apologies to all DW readers for inconvenience caused by incorrect information.

Sorry once again,

-Rahul Bansal

Author & Editor,

Devils Workshop