OnlineEarning .Blog

The OnlineEarning .Blog is a blog about Making Money Online through various legitimate ways, specially using a blog. The creator of this site makes money online and lives a good life after leaving his day job. If you run a blog, you too can make money. All you need is a little bit of guidance in the beginning. That's why http://onlinearningjob.blogspot.com/ is here for you! Take a look, browse through the pages and start earning a decent living off your blog(s)

Search

ONLINE EARNING MONEY

ONLINE JOBS

MONEY BANK

ONLINE MONEY

EARN MONEY

EARN 4 YOUTH

How to Stop Copy Paste Bloggers from Stealing your Content

Blogging is a beautiful world and if you are honest with it you will definitely enjoy it. But as in this world there are some good people as well as bad people. In blogging world people how are lazy and don’t like to create there own stuff often steal content and images from other blogs and put them on there own blog without crediting you. Also they use Auto blogging software which automatically post articles on there blog when ever you post a blog post. Amazingly some times these blogs are higher than original content owners blog which is a shame. There are some measures that you can take in order to stop content thieves.
stop plagiarism content theives from stealing your blog content
Disable Right Click & Selection of text.
This is the first step in order to stop newbie content thieves. Almost 90% of the content thieves simply select all your article data and paste it on there blog and publish it. They don’t even know about how to write or edit code so its very good thing that you disable Right Click and Selection of text in order to stop them. For WordPress there is a plugin called Wp-Copy Protect which will give you the power to disable Right Click and Selection of text in just one click.
Install Feed Pause Plugin.
Most of the time lazy people or bloggers don’t even try to copy paste your content and simply run Auto generated blogs which auto generates content from your blogs feed and republish them automatically. So when you publish an article it will instantly republish on spammer blog. To stop this you have to delay/pause your blog feed so that your original post may first index by search engine and than you publish feed so that spammer republish it after 1 or 2 days. For this you need to install WordPress Feed Pauser plugin. Install this plugin and set the timing of the feed republish time and your are done.
Prevent Hot Linking.
Its not the issue of duplicate content that hurts you but the images of your blog that copied by the spammers. The worst thing is that they use direct link of image which is present obviously on your webhost and hence steal your blogs bandwidth. If your blog has unlimited bandwidth than this might not be a problem for you but for a limited bandwidth site its a serious thing to tackle with. This was happen to me and suddenly internet khazana bandwidth jumped from 100MB per day 1GB per day which was very alarming and eventually i had to pay for extra bandwidth. So i decided to block all the requests generated by other blogs for images. For this you need to put some code mention below in the .htaccess file present in the root directory of your blog. Obviously change my blog name with yours one.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?internet-khazana.com/.*$ [NC]
RewriteRule \.(gif|jpg|js|css|png)$ – [F]
Dynamically put Back-link.
As we all know that most of the time copy paste bloggers will not give back credit to you by linking back to you so you have to automatically put a link back to your blog when ever some one steals your content. We know that copy paste blogger are lazy and they don’t even edit code or try to format the posts. So just install WordPress INK – Own your content plugin and every-time when someone tries to copy and paste your content on there blog this plugin will add automatically article link to your post which will give you a back link.
Link in RSS Feeds.
In order to earn credit from Auto bloggers you will need to add your blog link in all your blog feeds so that when ever Auto blogging software fetches your blog feeds it also embeds your blog link and hence you will earn back link from the site. For blogspot its very easy, just add code mention below in the Settings -> Site Feed and bottom of the feed and done.
<hr />
<a href=”http://www.internet-khazana.com”>Internet khazana</a>
For WordPress users you have to add some code in the Functions.php file of your blog theme and update the file.
function embed_rss($content) {
if(is_feed())
$content .= “<p><a href=’”. get_permalink() .”‘>’”;
$content .= get_the_title() .”</a></p>”;
return $content;
}
add_filter(‘the_content’, ‘embed_rss’);

10 Best Free WordPress Themes

WordPress is the premium content management system platform for bloggers and its best part is its professional themes which also makes it beautiful blogging platform. Blogging is the field which is getting popular day by day and lots of young and enthusiastic bloggers are joining this field. One of the main and essential ingredient of a blog is a highly crafted theme and the best way to start blogging is choosing right kind of premium theme for your blog. But Premium themes are not free and you have to pay for it. So if you have not money but don’t want to comprise on quality than here is a list of top 10 best WordPress themes.

1. Clean Blog Theme

download free wordpress clean blog theme

preview button
download button

2. Myst Theme

download free wordpress myst theme

preview button
download button

3. Ebuy Theme

download free wordpress ebuy theme

preview button
download button

4. Smasher a Light Blue Theme

download free wordpress Smasher a Light Blue Theme

preview button
download button

5. Modern Blogger Theme

download free wordpress Modern Blogger theme

preview button
download button

6. The blog Theme

download free wordpress the blog theme

preview button
download button

7. Delicate Theme

download free wordpress delicate theme

preview button
download button

8. Time Theme

download free wordpress time theme

preview button
download button

9. Urdu Theme

download free wordpress urdu theme

preview button
download button

10. ITheme2 Apple Theme

download free wordpress itheme2 apple theme

preview button
download button

 

5 Tips to Reduce Website Bandwidth Usage

If you have not unlimited webhosting than its very common that after your website become popular and you get lots of visitors daily your monthly bandwidth limit may exceed which results in blockage of your website. This is really bad after you have done so much hard work to achieve the level you want but Bandwidth limit is stopping your site and hence you are losing precious visitors which may become customers in future. Also its very good for SEO that you blog get down for days even for hours. So the solution is just upgrade to unlimited package or cut down the Bandwidth usage by some simple tricks.
reduce website bandwidth usage

Enable Compression in cPanel.

The biggest and most effective trick which will definitely reduce 30- 50% of your bandwidth usage is by enabling the compression of files in cPanel of your website. What this feature will do is to compress all the images and files on your blog server and send it to visitors browser in the form of zip file. Not only this feature will reduce bandwidth usage but also increases the loading time of your blog. You may be wondering how zip file will be read by browsers. Well most of the modern browsers will uncompress zip file and convert it into your blog layout but for older browsers your web-server will send them uncompressed files so don’t worry.
1. Login into your cPanel account and click on Optimize Website under Softwares/Services menu.
2. Now select the option Compress all content and click on Update Settings.

Disable Hotlinking.

Another most common issue with popular sites is Hotlinking. There are lots of content thieves who will not only copy all your blog text data but also copy image links of your blog. Which means that they will steal your blog bandwidth as they are linking your images in there blog. All the images that will show in thieves blog will be loading from your blog and hence your bandwidth will increase. This problem is often known as Hotlinking.
To disable Hotlinking you have to edit your blog .htaccess file present in the root directory of your blog. Simply put the code mention below in the .htaccess file and save the file. Remember to change my blog name with your blog name. What this code will do is to show nothing when your blog images will be Hotlinking by other bloggers.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?internet-khazana.com/.*$ [NC]
RewriteRule \.(gif|jpg|js|css|png)$ – [F]

Host Theme images on Image Hosting sites.

One of the most used image files of your blog are your theme image files which are downloaded over and over again which means lots of bandwidth usage. Now there is a very useful and easy trick to tackle with this problem. You can upload all your themes images files onto free image hosting websites like Tinypic, Picasa, Flickr, Blogspot and than use direct image links from there to load image files. What this will do is to load files every time from these free images hosting websites and you will save your precious bandwidth. Also this will increase your blog loading time and speed as most of the image hosting providers servers are way faster than yours.

Enable Cache Plugin.

If you have not install or enable cache plugin in your blog than do it now. Install Wp-Super Cache or Wp-Total Cache plugin for WordPress so that all your files will be converted into simple plain HTML files. This makes it easy for web browsers to store files locally on client computer and hence they will show these stored files to visitors each time they request them not from your webserver.

Reduce Image Sizes.

Unless you have a unlimited bandwidth don’t use more than one image in each article. Also before uploading convert all your digital images(camera, screen shots) into jpg format and all your graphics images(vector files) into Gif format. You will see a amazing size difference when you convert your images into these formats. Also set jpg images quality to 60% only not more than that.