Why WordPress Upate Asks for Connection Info

One of the great features of WordPress is that it allows you to automatically install and upgrade plugins.

A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating that “To perform the requested action, connection information is required.”

Connection Information

If you feel that your WordPress installation should not be asking you for this information, or you simply do not want WordPress to use this method of plugin management, you may be able to work around it.
What is Causing This? [Read more...]

WordPress Follow Me Plugin – IGIT Follow Me On Twitter Button

IGIT Follow Me on Twitter Button After Every Post or Page Plugin is first plugin created by me. By this plugin blog admin can add Follow Me On Twitter Button from admin by selecting Twitter images and also entering Twitter username. I know it is very small functionality this plugin provided but it is very useful plugin for users who are using Twitter.

By Using this plugin your followers count will be increased because whenever any user come to your site to read any post, User will see your twitter follow me button followed by that post and followed you if likes your articles for future updates.

This plugin is very simple in use, You have to just install it and then enter your twitter handle/username by going to settings->Follow me After Every Post and select twitter image you want to show after post/page and Update. Check your blog it will be showing Twitter Follow me button after every post. [Read more...]

Why WordPress Asks for Connection Info

One of the great features of WordPress is that it allows you to automatically install and upgrade plugins.

A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating that “To perform the requested action, connection information is required.”

If you feel that your WordPress installation should not be asking you for this information, or you simply do not want WordPress to use this method of plugin management, you may be able to work around it. [Read more...]

Tips for making money through WordPress and Google Adsense

Not all blogs are money making goldmines for a number of reasons. It could be that the subject matter is aimed at a small niche, it could be that the blog does not attract much traffic, or it could be that the blogger has no wish to make money from the blog.

However, many bloggers do make money through their blogs, and in some cases, this can go into five figures, so how do they do it?

Well there are several ways to do it, but one of the most popular is through advertising via Google Adsense, which is a pay per click program. [Read more...]

10 Useful WordPress plugins

WordPress plugins and their usefulness do not really require an explanation, but in case you are new to the blogging world, let us enlighten you. In short they enhance your blog both in appearance, and its manageability. Both of these factors will serve you, and your readership.

The easier, clearer, and more appealing your blog is to read and manage by your readers, the more likely people will subscribe, follow, and spread the word about your blog. It also helps you stand out from the crowd, and considering there is around twelve million blogs, getting ahead is a challenge.

These plugins though, should help you do exactly that, and make you, and your readers, happier. Some of these plugins we have touched upon already, but reminders are always good, for well, reminding you.

Dedicated Site Plugins. [Read more...]

What Is The Advantages Of The Use Of WordPress

The blog is a business where aside from your skills money is also a part of your investments. Not only you can  sell blogs, you also buy these blogs. We can get some good features from such CMS that will help us greatly in making our websites the best of what they can be. WordPress is one CMS that will ensure you of this thing. You know, if there is one thing about its features that I will like, it will be the features of this wordpress that provide free plug-in and the like, even themes. There are themes provided by wordpress that are free. With that, if we can make full utilization of these free features, it will help us to save money for capital and we will earn the intended money we want to earn. Being wise is always a part of being a businessman and for that matter, wordpress helps us a lot. [Read more...]

3 Methods To Exclude WordPress Categories In A Post

Sometimes, we may want to exclude some categories from display in our main page or sidebar. There are a lot of methods to exclude these categories. Here i would like to share 3 types of different method to do so.

Use WordPress Category Visibility Plugin

This plugin will let you to exclude any tag and category at different pages. For example, you can exclude selected category in the front page, search results, archives, and feeds. Simply activate the plugin and go to your Manage->Category Visibility to manage them. (There are some users who claim this plugin may has conflict with other WordPress plugins.)

wp_list_categories() template tags

You may use this template tags to list out all categories at your website’s navigation bar or your sidebar. The template tags tutorial website actually teach us how to include or exclude categories by adding parameters when we call this template tags.

Hack the default widgets.php

I read this tutorial from Simple Solution For smart People website. You need to make a backup of wp-includes/widgets.php file before proceed.

  1. After you backup the file. Open it using any text-editor and try to look for function wp_widget_categories. I am using WordPress 2.6.x and it is around line 703. This is the only function that you need to modify.
  2. Find the following line:
    $d = $options[$number]['dropdown'] ? '1' : '0';

    Add $exclude = ‘17′; below this line. You may replace 17 with the Category ID that you want to exclude. You may exclude more than one category by adding a “,” between the number.

  3. Next, look for
    $cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h);

    And replace it with

    $cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h, 'exclude' => $exclude);

Done. You can change the “17″ to any category ID that you want to exclude anytime. I had pasted my codes at the end of this tutorial, in case you don’t understand my tutorial.

function wp_widget_categories($args, $widget_args = 1) {
    extract($args, EXTR_SKIP);
    if ( is_numeric($widget_args) )
        $widget_args = array( 'number' => $widget_args );
    $widget_args = wp_parse_args( $widget_args, array( 'number' => -1 ) );
    extract($widget_args, EXTR_SKIP);

    $options = get_option('widget_categories');
    if ( !isset($options[$number]) )
        return;

    $c = $options[$number]['count'] ? '1' : '0';
    $h = $options[$number]['hierarchical'] ? '1' : '0';
    $d = $options[$number]['dropdown'] ? '1' : '0';
    $exclude = '17';

    $title = empty($options[$number]['title']) ? __('Categories') : apply_filters('widget_title', $options[$number]['title']);

    echo $before_widget;
    echo $before_title . $title . $after_title;

    $cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h, 'exclude' => $exclude);

    if ( $d ) {
        $cat_args['show_option_none'] = __('Select Category');
        wp_dropdown_categories($cat_args);
?>

Hope you enjoying reading my tutorial. Please choose any method that suit you.

How to Relocate your WordPress Blog to a New Domain Name

When you move a blog from a domain to a new Domain, what do you do ?
The first thing that you want to do is to create a new add on domain for the new domain name.
The next step in the process is to copy the entire contents of the old domain folder, which includes your entire WordPress blog, into the brand new domain folder within the same hosting area.

Next, there are a couple of SQL statements that you need to run:

* First, to update your WordPress options with the new location of your blog, the following SQL command needs to be put in:

UPDATE wp_options SET option_value = replace(option_value, 'http://www.old-domain.com', 'http://www.new-domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';

Next, you are going to need to fix the URLs of your posts and pages on WordPress. The URL values are stored as absolute URLs rather than as relative URLs, so you need to use the following SQL query to change them.

UPDATE wp_posts SET guid = replace(guid, 'http://www.old-domain.com','http://www.new-domain.com');

If you have linked internally at any point within your blog posts or your pages using absolute URLs, then this links are going to be pointing to the wrong locations after you change the location of your blog. You need to use the following SQL commands in order to fix all of the internal linking in all of your WordPress posts and pages.

UPDATE wp_posts SET post_content = replace(post_content, 'http://www.old-domain.com', 'http://www.new-domain.com');

Once you have put all of these SQL queries into action, the next step is to browse through as much of your WordPress blog as you can in order to make sure that everything is in good working order. You are also going to need to login to your WP Administration section because the authentication cookie will become invalid when you change domains.

Now you can delete the old folder contents so that your blog is not appearing in two different places.

In order to 301 redirect all old links from the old domain to the new domain, place a single file .htaccess into the now empty folder. You want to be sure to 301 redirect else you will permanently lose any hard earned links you have developed. Here is what the file should contain:


RewriteEngine on
RewriteCond %{HTTP_HOST} ^.old-domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.old-domain.com
RewriteRule ^/?(.*)$ "http://www.new-domain.com/$1" [R=301,L]

Finally, update your WordPress blog to have the new blog name in your title.

The process is relatively simple once you have a feel for what needs to be accomplished. Above all else, it is vital that you avoid upsetting your linking structure in the process. Make sure that all of your links are still valid and working after you make the big move, and your blog should be just fine, and more importantly, better off with an improved domain name.

Building a WordPress Blog People Want to Read

Building a WordPress Blog People Want to Read

Building a WordPress Blog People Want to Read

Having your own blog isn’t just for the nerdy anymore. Today, it seems everyone—from multinational corporations to a neighbor up the street—has a blog. They all have one, in part, because the folks at WordPress make it easy to get one. but to actually build a good blog—to create a blog people want to read—takes thought, planning, and some effort. From picking a theme and using tags to choosing widgets and building a community, creating your blog really starts after you set it up. In this book by blogger extraordinaire Scott McNulty, you learn how to:

* Install and get your WordPress blog running.
* Set up your site to ensure it can easily grow with you and your readers.
* Be the master of user accounts.
* Manage your site with the WordPress Dashboard and extend its capabilities with plug-ins.
* Make the most of images.
* Work with pages, templates, and links and—of course—publish your posts.
* Deal with comments—if you even want readers commenting at all.
* Find a theme—or build one yourself.
* Maintain your site and fix common problems.

Download:

http://up-file.com/download/1b86f2efc028f32cc5b92ced2c8887e6f

WordPress Robot Full Elite

WordPress Robot Full Elite

WP Robot WordPress Autoblogging Plugin 1.30
With WP Robot you can create targeted blog posts on any topic without writing anything! WP Robot is a powerful and easy to use autoblog plugin for WordPress With WP Robot you can create targeted blog posts on any topic without writing anything! WP Robot is a powerful and easy to use autoblog plugin for WordPress weblogs allowing you to turn your blog on complete auto-pilot and drip-feed it with fresh content in intervals you specify.

And the best part: The posts created will be targeted to any keyword you enter and any topic you could ever think of!
WP Robot Full EliteWP Robot Elite
(unlimited keywords, unlimited website license, no featured link) $30
Amazon Module $40
Article Module $25
Clickbank Module free
eBay Module $20
Yahoo Answers Module $20
Youtube Module $15
Translation Module $15
Flickr Module $20
Yahoo News Module $15
RSS Module $20
Total $220
now only: $169

Download:

http://hotfile.com/dl/19780746/8b46641/wpr.rar.html