Make Directory on Wordpress

May 8, 2008

Picture of Directory of WordpressDone! Now my web tech directory is up. I will put some website link there that related to website development and technology sources. Off course you also can add your own website there, don’t forget the reciprocal link :)

This directory was build with the help of WP Link Directory plugin, that only works for Wordpress 2.05 or above. Also you need GD enabled in order to get the Captcha working for the verification.
Some features that listed for this plugin are:
1. Creation of link categories, sub-categories with descriptions
You can create any number of categories with description in the directory, including sub-categories.
2. Quick add of link from admin backend and visitor front-end
Your visitor will be able to click on this link “Insert your link here”, it will pop out a form below for submission. Clean and simple.
3. Search engine for admin to find link
You can search for a particular link based on its title, domain name, email address, etc, thus never have to worry about can’t find a link that you want to delete or edit.
4. Easy integration to your Wordpress theme
Now, this is one of the highlights of the plugin. You don’t have to worry about the template because this directory will use your Wordpress theme. You can easily modify styling using the external style sheet provided in the directory folder.
5. Backlink cleansing for checking reciprocal links
What it is, is enabling you to run a link cleansing process that checks each reciprocal links and see if the site is linking back to you as it promised. A list of broken links will be listed and you can either remove them or do something else.
6. Non-reciprocal link allowance
Another great great great thing of the script. There’s many time when we want to allow a link to have non-reciprocal link, eg. you might just start setting up the directory and you’d need to stuff some default links in it. Thus, you can simply check the tickbox of “Allow non reciprocal”, and then the link will not be checked when performing link cleansing check.
7. Email notification templates
Sure you want to be able to have a good email template system that manage communication for submitters and webmaster. Thus, this script allows you to set a custom email template system for link notification and approval.
8. SEO friendly url rewrite
Wow! What more do you want? SEO friendly URL rewrite feature, that re-writes all url to search engine friendly format. Note that this requires you to be running on an apache though.

Cool enough?? Go download the WP Link Directory plugin here

After the installation, you will need to modify some layout code to fit your Wordpress theme layout. Good luck!

Popularity: 30%

How to Install Wordpress Plugin Without Upload It

May 3, 2008

Picture of Wordpress pluginsIf you found that installing wordpress plugin is difficult and time consuming things because of the big files to upload to your host, you can try this trick. You can install the Wordpress plugin without upload. But first, you have to make sure that the plugin that you want to install is listed on Wordpress Plugin Directory and you are using Wordpress v2.5 and/or above.

Next step is make a new file on your wp-content/plugins directory, just make any name for it.
Then edit the file and fill with this:
1. /*
2. Plugin Name: name_of_the_plugin_you_want_to_install
3. Plugin URI: the_plugin_URL_at_WP_Plugin_Directory
4. Description: plugin_descriptions
5. Version: 0.0001
6. */

Here’s the sample:
1. /*
2. Plugin Name: Get Recent Comments
3. Plugin URI: http://wordpress.org/extend/plugins/get-recent-comments/
4. Description: This plugin shows excerpts of the latest comments and/or trackbacks in your sidebar. You have comprehensive control about their appearance.
5. Version: 2.0.2
6. */

Then login to your Wordpress dashboard and go to Plugins tab. If your steps above was correct, it will shows this message under the related plugins:
“There is a new version of plugin_name available. Download the new version here or upgrade automatically.”
Then click the “upgrade automatically” button. Your plugin will be installed on your Wordpress blog

Credits to Cosaaranda.com

Popularity: 12%