Ignorantsoup and Maki

CommentLuv Wordpress Plugin - Link to last blog post written

This entry was posted on March 20, 2008. There are no comments. It was posted in Wordpress.

Have you been noticing that there are many blogs that seem rather special these days when you comment on them? Somehow one way or another they always leave a link to the last blog post you have written. That is by no way magical, but by a truly magical plugin called CommentLuv.

Now, we can reward our commenters by automatically adding a link to their most recent post. Hopefully it will generate more incoming visits!

The CommentLuv plugin is especially userfriendly. Just download the php file and upload it to your wordpress plugin’s directory and activate it via your wordpress! It’s just so easy. No codes!

To download CommentLuv, go to: http://www.fiddyp.co.uk/commentluv-wordpress-plugin/

Wordpress Plugin: Display Codes

This entry was posted on February 20, 2008. There are no comments. It was posted in Wordpress.

I have always wanted to have a wordpress category to write my own How-to’s for wordpress, but I haven’t been able to find the plugin to display codes. Or rather, I haven’t been actively finding the plugin.

At last I found the plugin and I am now able to display codes and hence write my own tutorials! Codes can now be displayed like the following:

<?php echo 'Hello World'; ?>

If you want to download this plugin, visit this site.

From now on, I will start introducing other plugins that I think are must-haves and even write out the implementation code that you would need to use.

Setting Up Wordpress

This entry was posted on August 27, 2007. There are no comments. It was posted in Wordpress.

In the past few weeks I’ve seen some people asking about wordpress in forums here, so I guess I will write a little guide for wordpress and how to set it up. For the clueless, wordpress is a program that allows you to blog on your own server. This means that you can get a blog on your own domain name and your own web host and all the data will be stored with the web host. You are no more under blogger or xanga.com!

Why do people want to use wordpress on your own web host instead of blogger? Firstly, you will not need to be afraid that your posts are against any terms and conditions of blogger or any other site. Its your own server and you can post whatever you want, other than porn or pirated stuff, of which your own web host will ban you. Secondly, wordpress is very flexible. You can install many plugins however you want. Plugins include comment spam detectors which detect spam and delete them. Finally, you get to put as many ads as you want. I do know that wordpress.com users cannot put any ads. A pity though.

Ok. Now moving on to the setting up of wordpress. I assumed that you have downloaded wordpress by now?

If you want, you can look at their information on installation.

By now I assume you also have a web host that supports PHP and MySQL? Do note that MySQL is extremely important. Without MySQL, you cannot have a database, and without a database, you cannot save your posts online. Thus please do check that your web host supports both php and MySQL.

*Note: For those with web hosts that come with software like Installatron, you can just install wordpress with a click of the mouse. Check your webhost out.

1) Unzip the file you just downloaded from wordpress
2) Decide if you want your blog to be on www.yourdomain.com or www.yourdomain.com/subfolder
3) Rename the wp-config-sample.php file to wp-config.php.
4) Open up wp-config.php using notepad
5) Now you will see that you need to input some values, primarily:

define(’DB_NAME’, ‘wordpress’);
define(’DB_USER’, ‘username’);
define(’DB_PASSWORD’, ‘password’);

the values of your database name, your database username and database password.

6) Log on to your web host and create a new database. Then substitute the values in. It will look something like this:

define(’DB_NAME’, ‘mynewblog’);
define(’DB_USER’, ’superman’);
define(’DB_PASSWORD’, ’supermanrocks’);

7) Have you decided if you want your blog to be on www.yourdomain.com or www.yourdomain.com/subfolder? If its the first, upload all the files to the directory. If its the second, create a new folder and upload the contents into the folder.
8) Install wordpress by accessing http://www.yourdomain.com/wp-admin/install.php or http://www.yourdomain.om/subfolder/wp-admin/install.php, depending on what you chose at point 7.

Isn’t it easy? Just follow the instructions from wordpress and you will be done. Wordpress is definitely easy to install!

 

Copyright 2007 - 2008 The Ignorantsoup.com