Archive for the ‘Tutorials’ Category

Increase Profits with Blogrolled.com

Monday, June 23rd, 2008

ReviewMe’s friend, Shawn Nafziger, has launched a service to help bloggers make even more money! It is called BlogRolled.com in which they provide natural search benefits by linking from blogs.

blogrolled

Bloggers, you have full control over which blogrolls you post on your site and post relevant links to your blog that also increase profits. You can have 10 active blogrolls per site. It is not necessary to insert code into your website/blog pages until you receive a Blogroll order from an Advertiser.

As for advertisers, if you need to increase your link popularity, you can simply want to target the exact customer that you can search from blogger’s listing. Pricing for Blogrolled.com

Publishers’ sites is based on a combination of link popularity, estimated readership (Alexa), and estimated RSS subscribers. Currently the price Blogging Secret is $40 for each blogroll link. But Bloggers will receive 50% of the sale price for each Blogroll link sold off of your website through their system.

Sadly to tell that BlogRolled.com does not have an affiliate program at this time, we are unable to make extra money from the referral link.

Google Analytics Video Tutorial

Friday, March 7th, 2008

Google Analytics service is offering traffic measurement and interactive reporting for small and large sites, which includes visitor tracking, navigation analysis, and many more. I believe that many webmaster has using it now. If you are still not familiar using Google Analytics, I hope the below Google Analytics video tutorial can help!

Public Blog Post Using Microsoft Words 2007

Saturday, December 29th, 2007

Microsoft Words 2007 allows you to create a new blog post and public to your blog provider. Here are the easy and simple steps to do so.

1. Go to Office Button > Public > Blog

2. “Register a Blog Account” dialog box will be displayed
3. Click “Register Now”
4. Choose your blog provide, for example wordpress

5. Enter the required information as per example below

6. Then you can start to write something and click public button to publish your post, that’s all.

Install and Run Wordpress in Your Computer

Wednesday, December 26th, 2007

Last time when I want to test my design for my free wordpress theme, I will upload to my web hosting and run it in live. Recently, I started to learn how to run wordpress locally in Windows in order to save my time when the time I want to design free wordpress theme.

Here is a simple and easy guide that will help you install and run wordpress locally in your computer.

1. Download XAMMP lite for windows. Choose the exe version and then extract it in the root of C drive

2. Browse to C:\xampplit and double click setup_xampp.bat

3. Double click xampp-control.exe and start the Apache and MySql services

4. Open your browser and go to this address: http://localhost/. From the menu on the left column, choose your preferred language
5. Click on phpMyAdmin on the left bottom of the page

6. Create new database by entering the information as per following picture
7. Download Wordpress and unzip it under c:\xampplite\htdocs.
8. After unzip the wordpress, browse to c:\xampplite\htdocs\wordpress and you will see a file named wp-config-sample.php. Open it in your favourite text editor and replace the default values by the ones you see under this paragraph. Save the file as wp-config.php (under the same folder).

// ** MySQL settings ** //
define(’DB_NAME’, ‘wordpress’); // The name of the database
define(’DB_USER’, ‘root’); // Your MySQL username
define(’DB_PASSWORD’, ”); // …and password (needs to be empty, just for local install)
define(’DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

9. Open your browser and navigate to http://localhost/wordpress/wp-admin/install.php, set up the wordpress as per instructions.

How to Create Archives Using Smart Archives Wordpress Plugin

Thursday, December 6th, 2007

Don’t laugh at me, I have been taken 2 or 3 day’s time to learn how to create archives using smart archive wordpress plugin last time, this is because I don’t know how to create page template at that time. Now, I told you how to create archives using smart archives wordpress plugin in 5 minutes.

Download Smart Archives Wordpress plugin

1. Download Smart Archives plugin
2. Upload this plugin into your wp-content/plugins directory
3. Activate this plugin through your Wordpress Administration panel

How to Create Page Template for Smart Archives

1. Open your theme folder and find page.php
2. Duplicate page.php and rename it (i.e. page-archives.php)
3. Open page-archives.php (the file that you duplicated just now)
4. Add the following coding at the top of the page (before )

<?php
/*
Template Name: page-archives
*/
?>

5. Upload page-archives.php to your selected theme folder
6. Create new page
7. At the right hand side of the “write page” page, can you see Page Template?

8. From there you can select “page-archives” (the page-archives.php that you upload just now)
9. Save it and give a page name like “Smart Archives” (Don’t use “Archives” as page name, it doesn’t work for me last time)