10 Ways To Increase Your Affiliate Commissions

1. Participate in chat rooms related to the product you’re reselling. Start a conversation with a person without trying to sell to them. Later on, while you are chatting, mention the product you’re reselling.

2. Create a free ebook with the advertisement and link of your affiliate web site. The subject of the free ebook should draw your target audience to down-load it. Also submit it to some ebook directories.

3. Start your own affiliate program directory. Join a large number of affiliate programs and list them all in a directory format on your web site. Then just advertise your free affiliate program directory.

4. Write your own affiliate program ads. If all the other affiliates use the same ads you do, that does not give you an edge over your competition. Use a different ad to give yourself an advantage over all the other affiliates.

5. Use a personal endorsement ad. Only use one if you’ve actually bought the product or service for the affiliate program. Tell people what kind of benefits and results you’ve received using the product.

6. Advertise the product you’re reselling in your signature file. Use an attention getting headline and a good reason for them to visit your affiliate site. Make sure your sig file doesn’t go over 5 lines.

Continue Reading

Incoming search terms for the article:

obamatruthsquad com

All You Need To Know About Adsense To Blast Your Income Sky-high!

From my personal experience and from speaking with many other publishers, it seems that many of them cannot even garner enough earnings to trigger off a payment from Google (USD $100). This is really sad because many give up before even reaching the halfway mark. Imagine adding up all the quitters, the amount of advertising money Google would have pocketed without paying a cent!

Point #1 Find Your Niche.
You need to know about your topic or subject fully and be an at least knowledgeable on it. You write quality content, you get quality ads shown. It is as simple as that. If you really found profitable niche on but know nuts about it, you can always use free articles (like this one) and post them on your site with their links on them of course. It is a easy and quick way to get quality content to your site.

Point #2 Laser Focused Theme.
You need to fully concentrate on your topic and area of interest. Do not deviate from it even a single bit! The reason behind this is to get the MOST relevant ads to your content which in turn will be the most likely to interest the visitor and get clicked on.

Point #3 Website Navigation.
Do not trick the visitor, do not confuse the visitor, do not attempt to hide the ad but do not ‘blast’ the ad at the same time. Create your navigation in such a way that your ads appear unobtrusive and yet viewable. It is advisable to put more then one ad but do not cramp your page with ads, it turns the visitor off.

Continue Reading

What should I do if my vps server get high load ?

If your vps server get high load, it can be caused by your much client that use more resources. You can try to find which is the most use much resources, so you can reduce it by deactive that account. For find it, you can see at inside kloxo admin, menu proccess. Or you can try deactive one by one your client for find the most use much resources.

Continue Reading

add new domain at kloxo admin panel

To add new domain at kloxo admin panel, almost same way with add new domain at cPanel. For add new domain, first,login into your kloxo hosting panel, and click Add Domain.

Fill :
Domain Name field with your domain, and other field, just leave it. And click button Add. Now, you have new domain that host same with your first domain

Continue Reading

Incoming search terms for the article:

add domain in kloxo panel, how to create site in kloxo, how to create addon domain kloxo, how to create new domain in kloxo, kloxo add admin domain, kloxo add new domain, kloxo adding new domain, kloxo adding new domain 500 internal server error, kloxo host domain under admin, kloxo new client domain

Upgrade Kloxo Mysql, PHP if you want to.

We can upgrade our Kloxo Mysql and PHP.
For upgrade it, we use SSH and yum command

First, we check our MySQL that already installed inside our kloxo.

# rpm -qa | grep -i mysql

for check the latest Mysql available for Kloxo

# yum check-update mysql-server

And for upgrade :

# yum update mysql-server

For upgrade PHP
Check our server PHP latest version

# rpm -qa | grep -i php

Continue Reading

Incoming search terms for the article:

kloxo update php, kloxo upgrade MySQL, update php kloxo, upgrade mysql kloxo, kloxo upgrade php, kloxo mysql upgrade, update mysql kloxo, kloxo update mysql, upgrade php kloxo, kloxo php upgrade

Change kloxo awstats to webalizer for less load server

This is how to change awstats, Web Statistics Program to webalizer. I read at kloxo forum, that webalizer more less load than awstats. So I change my web statistics program at Kloxo admin.

For change it , login to your Kloxo admin with username admin.
Inside kloxo, you will find “General Settings”. Inside this you can change Web Statistisc Program form awstats to webalizer. That’s it. Restart your kloxo server, and now your web statistics program has been changed to webalizer.

I am new for use this, so if this wrong, please comment help for fix this.
Thank you

Incoming search terms for the article:

kloxo awstats, optimize kloxo, kloxo webalizer, awstats kloxo, how to optimize kloxo, kloxo optimize, optimizing kloxo, webalizer kloxo, optimise kloxo, Kloxo theme

Download movie using Torrent

This is the first time download movie using Torrent. Originally started to download the movie Shaun of the Sheep.

After searching in google, finally find download big movie using Torrent. To dowload torrent software for free, you can find at here.

After download and install, now looking for a movie torrent file from Shaun the Sheep. After find it’s torrent file and downloaded, run torrent software and add that torrent file. After that, leave it to torrent to download for you.

I still downloading shaun the sheep movie, still not finished yet, 3,4 GB of file.

Php script for make TAG Cloud for more interactive website

TAG Cloud. That’s show our TAG or others for make our website more interactive. I use this for my classified website. I want to display TAG of Ads’ TAG. After search at google, I use this script and I think this script good.

This for Style. Place it between <head> and </head> of our website.


You can change/edit the style for your own purpose. You can set the color, border if you want or other else.

And this is example for using tag cloud. Example display TAG for categories

< ?php /** this is our array of tags * We feed this array of tags and links the tagCloud * class method createTagCloud */ $tags = array( array('weight' =>40, 'tagname' =>'Art and Entertainment', 'url'=>'http://obamatruthsquad.com/category/art-and-entertainment'), array('weight' =>12, 'tagname' =>'kloxo server', 'url'=>'http://obamatruthsquad.com/category/internet/kloxo-server'), array('weight' =>15, 'tagname' =>'BUSINESS', 'url'=>'http://obamatruthsquad.com/category/business'), array('weight' =>10, 'tagname' =>'domain', 'url'=>'http://obamatruthsquad.com/category/internet/domain'), ); /*** create a new tag cloud object ***/ $tagCloud = new tagCloud($tags); echo $tagCloud -> displayTagCloud(); ?>
< ?php class tagCloud{ /*** the array of tags ***/ private $tagsArray; public function __construct($tags){ /*** set a few properties ***/ $this->tagsArray = $tags; } /** * * Display tag cloud * * @access public * * @return string * */ public function displayTagCloud(){ $ret = ''; shuffle($this->tagsArray); foreach($this->tagsArray as $tag) { $ret.=''.$tag['tagname'].''."\n"; } return $ret; } } /*** end of class ***/ ?>

Hope this usefull

Incoming search terms for the article:

interactive tag cloud php, tag cloud script in php for showing different location, tag cloud script for websites, tag cloud script, tag cloud PHP script use URL, tag cloud php script for website, tag cloud php script, search site create tag cloud php, php tag cloud incoming serch google, php tag cloud database

Easy way to move Cpanel hosting to Kloxo hosting

I get this way from my friend, Hendra. Usually I move hosting to new one use ftp upload for upload all file to new hosting. This way is not good, because i must waiting for upload file untill finished, and my internet connection is very slow. I must spend time 1-2 hours for move 1 account.

But now, I can move 1 account hosting for 8-10 minutes.

This way is use SSH connection / Putty. First, you must can access root or your SSH connection. If not, this way is can not be used.

If you can access SSH. This is way for move your hosting to new one.

  1. Login to your old hosting (cPanel) and click  File Manage, and choose Home.
    At you file manage, check your folder Public_html and compress it with zip. After you zip this folder, you will see your file zip. Move your file zip to public_html.
  2. open your putty and Login for user root.
  3. #cd home/yourdomainuser/yourdomain.com. If failed, try #cd home/yourdomainuser then #cd yourdomain.com
  4. And you will see [root@yourdomain.com].
  5. #wget http://yourdomain.com/yourfilezip. Wait untill save process finished Continue Reading

Incoming search terms for the article:

migrate cpanel to kloxo, migrate from cpanel to kloxo, cpanel to kloxo migration, cpanel to kloxo, kloxo import from cpanel, transfer from cpanel to kloxo, transfer cpanel to kloxo, kloxo migration from cpanel, import cpanel to kloxo, migrate kloxo to cpanel

How to change your wordpress archive layout

My blog archives using wordpress is List show. If your archive is much, it will become long archives.

I like to make my archive layout become combo Box / drop down box.

This is the code (get from wordpress original website)