Add "Digg This" Button into Blog
What will be given to us from “Digg This”?
The answers is :
- Encourage users to submit new content from your site to Digg. We'll detect if the content exists already and provide either a Submit or Digging interface
- Display the real-time Digg count for content already on Digg
- Support News, Video, or Podcast content.
- Be backward compatible with the last version of our Digg This button
Now, this article will guide you how to add “Digg This” step by step to your blog/site.
Before you do it, you need to follow in the following steps:
1. Your blog should be set to save Post Pages. Post Pages are archived blog posts published to their own web page. Each post will have a unique URL, which is required by Digg for the individual posts to be submitted. To verify or enable it, login to your Blogger Dashboard. Settings > Archiving, set the Enable Post Pages? to Yes & save the setting.
2. This template hack will put a “Digg This” button to every your post. Therefore you aren’t able to choose which post you want to include/exclude a button.
3. The code reads the URL of the individual blog page and this shall be the URL used for submission of the story to Digg.
Ok, let’s begin our work……..
Add Digg Button
Under Template, click the Edit HTML tab. Block copy the entire HTML code for your site & save it in a text file. You can also click the Download Template link. This is one of the two necessary steps whenever you want to change the template. The second step is of course to Preview the new changes & save the changes only when you are satisfied. The backup you have saved in a text file will come in handy when you accidentally click to save the changes without previewing them. With a backup, you can easily restore the template to the prior state if need be.
Click Expand Widget Templates. Click anywhere in b lock of Edit Template, then find code below in your template by Ctrl+F
<p><data:post.body/></p>
After you have found it, you need to choose one button choice that where you will put the button. It’s up to you. You can put the button anyhere in current position of your posts. Let’s choose one of them.
1. If you want the button to show at the top right corner of your post, replace the above code with this.
<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>
digg_url="<data:post.url/>";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<p><data:post.body/></p>
The result:
2. If you want the button to appear at the end of your post, replace with this following code instead.
<p><data:post.body/></p>
<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>
digg_url="<data:post.url/>";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
The result:
3. If you want to show the button at the top left corner of your post, replace with this following code instead.
<div style='float:left; margin-right:10px;'>
<script type='text/javascript'>
digg_url="<data:post.url/>";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<p><data:post.body/></p>
The result:
4. To unique position, you can insert he code below.
<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>
digg_url="<data:post.url/>";
digg_skin="compact";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<p><data:post.body/></p>
The result:
- You can also change the background color of the button to blend with your site. For example, a code like this:
<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>
digg_url="<data:post.url/>";
digg_bgcolor="#BDEDFF";
digg_skin="compact";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<p><data:post.body/></p>
The result:
You can insert the color code of your choice into the red portion. For a list of color values to insert, you may download it.
- If you want to show the button after the labels, find this code below in your template by using Ctrl+F.
<p class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
<b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if
cond='data:label.isLast != "true"'>,</b:if>
</b:loop>
</b:if>
</span>
</p>
After that, add this code below after the code above (red color).
<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>
digg_url="<data:post.url/>";
digg_skin="compact";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
The result:
- If you want to show the button at the end of every post, find this code below in your template by using Ctrl+F.
<div class='post-body'>
<p><data:post.body/></p>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
After that, add this code below after the code above (red color).
<div style="float:right; margin-left:10px;">
<a expr:href='"http://digg.com/submit?phase=2&url=" +
data:post.url + "&title=" + data:post.title'
target='_blank'><img border="0" alt="Digg this"
src="http://digg.com/img/badges/91x17-digg-button.gif"/></a></div>
The result:
8. From 1-7 choice, the code given is to show the “Digg This” button to your every articles. And if you want to add “Digg This” button in article that you want to add it/selected article not to all articles, copy the code below.
<a href="http://digg.com/submit?phase=2&url=URLofyourarticle"
target="_blank"><img border="0" alt="Digg my article"
src="http://digg.com/img/badges/91x17-digg-button.gif"/></a>
Change URLofyourarticle with your post URL (you can go to your blog/site, so choose one article and click on the title of your post. This will bring you to the post page. Copy the URL of your article in address bar & paste to red color. If you want a different image, insert the image URL into the blue color of the code (you can to know the way by reading in part of Different Image.
Now, go back to Dashboard & Edit your post. Choose the Edit HTML mode & not Compose mode. Copy the above code & paste it into whichever part of your blog article. Preview it, & if you are happy with it, Publish it.
Different Image
The button 91x17-digg-button.gif is simply an example. There are many buttons you can use. To change the button to another design, replace the image URL with that of the new button.
You can upload them to free image hosting, then replace to tag img in attribute src with URL from your hosting. For example: the image that you want to show like this & your URL from your hosting like this.
http://www.photobucket.com/img/badges/91x17-digg-button.gif
So, replace the code from this
<div style="float:right; margin-left:10px;">
<a expr:href='"http://digg.com/submit?phase=2&url=" +
data:post.url + "&title=" + data:post.title'
target='_blank'><img border="0" alt="Digg this"
src="http://digg.com/img/badges/91x17-digg-button.gif"/></a></div>
To like this
<div style="float:right; margin-left:10px;">
<a expr:href='"http://digg.com/submit?phase=2&url=" +
data:post.url + "&title=" + data:post.title'
target='_blank'><img border="0" alt="Digg this"
src="http://www.photobucket.com/img/badges/91x17-digg-button.gif"/></a></div>
Read more.....
Tuesday, September 30, 2008 | 0 Comments
How to Detect Your IP Address
There’re 2 ways how to detect your IP address computer.
The first way is (this is the simplest way) clicks 2x in icon two computers that wink in system tray (in bottom right booth), after the status window appears, choose tab Details. There, you can see your IP address computer in words Client IP address.
The second way is open Command Prompt (click start > Run. . . > type cmd > enter). After opened, type ipconfig, so IP address will be informed to you.
Read more.....
Thursday, September 25, 2008 | 0 Comments
Tips Beautify Testimonial with Emoticon
Usually we only inscribe testimonial to make our friends in FS with funny words, color or anything. Sometimes you also often sends testimonial with put into pronunciation card, flash, slide show photo, etc. But nothing special. You’re maybe bored also. Well this tips FS a little will explain you about how shall we beautify/decorate words we send via testy make our friends by using emoticon (smiley).
Emoticon (smiley) will be unique pictures nest, funny, impressive, usually be face picture that represent our emotion moment send/posting message. Usually emoticons also in the form of animation that move with unique style & funny. Usually this emoticon used to equip posting message by a member communities in forum really provided by script forum that used by communities like IPB, PhpBB & SMF.
First, open your FS. Log in to FS as usual, then moment begin to want to send testy make your friends as usual types words that want you say via testy that make to your friends.
Second, leave testy sending yard FS a moment. Then open new tab browser & open emoticonizer site at http:/emoticonizer.info/ in the website you can find a lot of emoticons & smilies both for funny also animated & oscillate.
Third, choose emoticon/smilies that fit & represent your words or as according to your emotion or as according to your ugly face. If you’re angry, choose angry smiley, if you’re sad choose sad smiley. Then copy existing code beside right each smilies, choose HTML code don't BBCode. Because in column FS testy only permit to input HTML code, while BBCode usually for forum. Ok, click > right click > copy.
Fourth, reopen testy sends yard in FS & paste code that code you copied a while ago after your words. Right click > paste.
Remember you can put emoticons together with your words repeatedly provided still there character remained (tough left booth under testy column). You can repeat repeatedly, just calm. So that your testy are funnier, chooses funny smilies then direct insert behind your words. Then write more several messages, insert smilies again, write again insert again, and so further.
Read more.....
Thursday, September 25, 2008 | 0 Comments
Submit Blog to Search Engines/Submission Service
After we made contents to our blog, it’s time we promote it, for what we wrote something but nobody read it, all the same of no use. For that we’re necessary to promote our blog so the blog can be read by many people. There’re many techniques that can we do, but person usually promote their site to search engine, it will gives more visitors. Like, if we want to look for something then we look for it in internet, certainly we shall open Google to will helps our problems. The accuracy of Google clear proven by their algorithmes. From this example we can conclude that with register our site to some search engines , it will gives more traffic to us.
If your site is private, you don’t need to index/submit your site to some search engines like Google, Yahoo & MSN. One of the fastest ways to have your site indexed is to get another site that is already in the search engine listings to link to you. Do this technique if you don't want to wait longer so that search engine get your site submission. Before we submit it to some search engines, there are some point necessary you will do.
1. To check if your site has been indexed by a search engine, enter the full URL into their search query. For some search engines like Google, enter site:yourfullURL (change yourfullURL with your site). If you see your site appearing in the search results, it has been indexed & there is no need to resubmit again.
2. If your blog has been linked to Blog Directories, websites/blogs, you may see these other sites that mention your blog appearing first in the search results. More likely than not, they have a higher page rank. Scroll through the remaining search result pages & you will probably find a listing that is solely about your blog.
3. When submitting your site, you don’t need to submit the URL of each individual webpage. Submit only the top-level webpage & for Blogger blogs, it will be an address like this http://blogname.blogspot.com without the www. before the blogname.
4. You can submit your sitemap to Google & login to Google Webmaster site to know the status of the indexing & view traffic statistics. Also, submit your sitemap to Yahoo! to find out more about the index & links to your site. Submit Blogger Sitemap to MSN & Ask.com too.
5. If you add your URL in Yahoo!, it will appear in their other search sites like AlltheWeb & AltaVista as well. Similarly, AOL Search uses the data by Google.
6. Some of the sites send advertisements ,newsletters & put their link into your site in exchange for free submission. If you don't want that, remember to opt out of it. Avoid having your regular email account filled with these mail by creating another free web-based email account just for website submissions.
7. Since search engines have different standards of content, design & technical specifications, submission of your site doesn’t guarantee that it will be included in their databases.
List of Search Engines
Google (populer search engine)
Abacho (European search engine)
Search Engine Submission Services
There are many sites on the internet offering free website submission services to search engines. The list of search engines are by & large the same. For a fee, some of them offer to send your URL to more than a hundred search engines. Is it necessary to have your webpage listed in all the smaller search engines? We think that Google, Yahoo! & MSN have cornered such a large share of the market that it is sufficient just to have your website listed there. However, the decision is yours to make. For a start, you may want to use their free services and monitor the traffic.
Read more.....
Saturday, September 06, 2008 | 2 Comments
7 Steps Destroy Maxtrox Virus
Maxtrox virus (maximum troxer) that detected as W32/Dloader.HFZC, changes desktop wallpaper in computer to become maxtrox picture. This wallpaper will be active in every date 1 s/d 6 in April, August & December.
To clean maxtrox virus, follow steps follows :
1. Best do cleaning in safe mode.
2. Turn off virus process in memory. Use tools successor task manager, like itty bitty process manager that can be downloaded here.
Do kill process, in active virus file that is :
c: \documents and settings\%user%\application data\microsoft\%dsh%. exe (random/random virus name, such asl aizw. exe, scnp. exe, etc).
3. Erase string registry that made by virus. to simplify can use script registry under this :
[version
signature=" chicago$"
provider=vaksincom oyee
[defaultinstall
addreg=unhookregkey
delreg=del
[unhookregkey
hklm, software\classes\batfile\shell\open\command, , , " " " %1" " %*"
hklm, software\classes\comfile\shell\open\command, , , " " " %1" " %*"
hklm, software\classes\exefile\shell\open\command, , , " " " %1" " %*"
hklm, software\classes\piffile\shell\open\command, , , " " " %1" " %*"
hklm, software\classes\regfile\shell\open\command, , , " regedit. exe" %1" "
hklm, software\classes\scrfile\shell\open\command, , , " " " %1" " %*"
hklm, software\microsoft\windows nt\currentversion\winlogon, shell, 0, " explorer. exe"
hklm, system\controlset001\control\safeboot, alternateshell, 0, " cmd. exe"
hklm, system\controlset002\control\safeboot, alternateshell, 0, " cmd. exe"
hklm, system\controlset003\control\safeboot, alternateshell, 0, " cmd. exe"
hklm, system\currentcontrolset\control\safeboot, alternateshell, 0, " cmd. exe"
hkcu, software\microsoft\windows\currentversion\explorer\advanced, showsuperhidden, 0x00010001,1
hklm, software\microsoft\windows\currentversion\explorer\advanced\folder\superhidden checkedvalue, 0x00010001,0
hklm, software\microsoft\windows\currentversion\explorer\advanced\folder\superhidden defaultvalue, 0x00010001,0
hklm, software\microsoft\windows\currentversion\explorer\advanced\folder\showfullpath defaultvalue, 0x00010001,0
[del
hkcr, exefile nevershowext
hklm, software\classes\exefile nevershowext
hklm, software\microsoft\windows\currentversion\run visualstyle
hkcu, control panel\desktop, scrnsave.exe
· Use notepad, then save by the name of" repair. inf" (use choice save axis type be all files so that doesn't happen error).
· Run repair. inf with click right, then choose install.
· Best make file repair. inf at computer clean, so that inactive virus returns.
4. Erase virus mother file that has feature as follows:
· icon" winrar"
· extension. exe, . scr, . msd, . sysm
· size 77 kb
note:
· Best display latent file so that simplifies in course of virus file livelihood.
· To simplify livelihood process best use" search windows" with file filter. exe, . scr, . msd, . sysm that has size 77 kb.
· Erase virus file usually has same date modified.
5. Erase virus duplication file in folder c: \program files (usually virus file is followed file executable original that -rename be exe file by virus).
6. Reconvert file extension executable that -rename by virus in folder c: \program files. use software/tool to simplify rename extension quickly, for example extention renamer.
7. For optimal cleaning and prevent infection repeats, best use antivirus -update can identified virus to simplify virus abolition.
Read more.....
Saturday, September 06, 2008 | 0 Comments
7 Tips Choose a Netbook
Laptop mini/ called with netbook in this time middle flood market. Cute size, light heavy, with achievable relative price really enough tempt. But, don't be reckless moment want to buy gadget one this, so that make no apology later on day. It is better, you correct reading 7 tips choose netbook.
1. Correspond to your need corresponds to budget existing
Before buying a netbook, you must detect your needs. Do you want a light heavy apparatus to simplify internet access? or you want laptop loaded features? If really you want many features, better you cancel intention to buy netbook and choose to buy laptop. Netbook fits used to surfing, presentation job with office. While laptop fits used to edit another multimedia video/job.
2. Buy netbook of the size sail 8,9 inch/ measure wideer
While buy a netbook, look at sail size. Try to buy netbook of the size minimal sail 8,9 inch. Size undersize will decrease your freshment moment will use netbook, because can’t see site yard as a whole.
3. Ascertain netbook your choice is subsidized with battery 6 cells
Battery 6 cells will give you to will use netbook in duration long relative time. For example, netbook eee PC 1000 Asus and Eee PC 901 that hold back up to 8 clocks.
4. Try keypad netbook ascertain that is pleasant for your radius
Before decide to carry go home a netbook, best you try beforehand keypad in netbook your choice. Ensure that keypad pleasant used.
5. Accurate what used in netbook software
Before decide to buy a netbook, accurate beforehand, what used in netbook software. Does software as according to your willing, Windows for example XP/Linux.
6. Consider netbook price
Usually, a netbook on the market in be US$ 500 price turn. If netbook price exceed price US$ 500, consider again your willing to buy netbook. Because price approach laptop price usually, prepare features completeer than netbook.
7. Consider features everything found in netbook
Read more.....
Saturday, September 06, 2008 | 0 Comments
5 Ways to Destroys Virus "Gadis Desa"
Virus W32/WAYRIP, a scattered with camouflage as multimedia file type. Computer infection with this one virus of them marked with message appearance from the virus maker that will displayed at random in the form of message pop up. One of the action that done this virus changes clock indicator name in right booth under computer, from general PM be rieysha. How does manner clean it? Follow instructions hereunder :
1. Turn off system restore during cleaning process (Windows Me/XP).
2. Kill virus process, for lethal your virus process can use tools killvb. Please download tools here.
3. Erase registry that make/changed by virus. To wipe off registry, please download tools fixregistry next here
4. Erase virus mother file with feature:
size 148 kb
multimedia icon
extension exe
type file application
To simplify abolition process, best use "search" with beforehand display latent file.
After file success found, erase file with feature as in on. Also file next in root drive (c: \ or d: \):
pesene_seng_gawe. htm (size 22 kb)
xx pesene_seng_gawe. htm (size 1 kb), xx demo random character
autorun. inf
c: \puisi. txt
c: \windows\taskman. com
5. To optimal cleaning & prevent infection repeats, please scan with antivirus that can detect & destroy this virus.
Read more.....
Saturday, September 06, 2008 | 0 Comments
Submit & Ping RSS Feeds
And also if you had some feeds, you can submit it to feed directories. We give you Feed Directories & Pings list (that you can update your database submission on some directories) to help your feeds submission to promote it. This should help increase awareness of your new posts & give more readers to your blog/feed. Because we would update Feed Directories & Pings list, you might want to consider bookmarking this page as we shall update the list whenever we come across others useful services. When you come across a page with contents that are viewable in web feed formats, you will be able to click the icon in your browsers to subscribe to the feed of that page. These feeds may either be a full text or summary of the content. The content can be read on a feed reader/aggregator which checks the sites regularly for new contents. The terms RSS & Atom are feed formats.
To ensure that your blog is able to syndicate the feed content of your posts, login to your Dashboard & go to Settings -> Site Feed. Make sure that you have set Allow Blog Feed to Short /Full. Save the settings.
Next, key this URL into your browser, substituting YOUR-BLOG-URL with the URL of your blog beginning with http://
YOUR-BLOG-URL/feeds/posts/default?alt=rss
Do you see your Blog feed? If no, so test with this URL
YOUR-BLOG-URL/feeds/posts/default
You should be able to see the contents of your posts, either in summary form/full, depending on your settings. These are your blog feed URLs. You can submit some of them to the Feed Directories that we listed below. If you have syndicated your feed to other services like Feedburner, you can submit that Feed URL too. To confirm whether your feed URL is correct, you may also enter it into this RSS Feed Validator.
Submit Feeds to Feed Directories List
1. General
4Guys from Rolla - For resource RSS feeds.
ASP Index - For resource RSS feeds.
Blogtoplist
Blogz
Chordata - Register to submit RSS feed in relevant category.
Daypop - For news sites.
DayTimeNews
DevASP
Feed24
FeedAge - Register to submit RSS feed.
FeedBase
FeedBomb - Select a category to submit RSS feed.
FeedBlitz - Register to submit RSS feed.
FeedBurner - Register to submit RSS feed.
FeedCat - Register to submit feed in relevant category.
FeedsFarm
FeedFury
Feedmap
Feedooyoo - Submit RSS feeds and keywords.
FeedShot.com
Feeds2Read
Feeds4All
FeedFarm – For news related RSS feeds.
FreshPodcasts - For podcasts.
Feedshark - Ping your blog, feed/podcast.
Feed Submitter
GeneCast - Register to submit your news feeds.
millionRSS
MoreOver
NewzAlert.com - Register to submit RSS feed.
nFeeds
Octora
Odeo - Register to submit RSS feed.
Plazoo
Postami
RedTram
RocketInfo
Rojo - Register to submit RSS feed.
RSSFeed - Register to submit RSS feed.
RSSKnip - Add RSS feed at the bottom. [Update: not accepting new feeds]
RSSMad - RSS feed submission at bottom right.
RSSMountain
Search4RSS
Sourceforge - For news feeds.
Syndic8
Technorati
Videocast - For videocast or vodcast.
2. Specific
Auto Feeds - For automotive feeds only.
Nooked - For corporate feeds only.
Educational Feeds - For educational podcasts and RSS feeds.
Finance Investing Feeds - For finance or investment related RSS feeds.
Government Feeds - Only for feeds from local and federal government agencies.
Medical Feeds - For medical care or health related RSS feeds.
National Lib for Health - For medical and health RSS feeds.
Political Feeds - For political podcasts and RSS feeds.
Realty Feeds - For home related RSS feeds in the appropriate category.
Religious Podcasts - For podcasts relating to religion, sermon or spiritual beliefs.
Science Port - For scientific news feeds.
Security Protection Feeds - For security or protection related RSS feeds.
Sports Feeds - For sports related podcasts and RSS feeds.
3. Regional
1470 - Japanese RSS feeds.
31engine - Japanese RSS feeds.
Bakeinu - Japanese RSS feeds.
Bitacoras - Spanish blogs.
Bitacoles - Spanish RSS feeds.
Blogblogs - Brazilian blogs.
Blogbot - Danish RSS feeds.
Blogg - German RSS feeds.
BlogPeople - Japanese RSS feeds.
Blog-search - Japanese blogs.
Blogstyle - Japanese RSS feeds.
Feeds.com.br - Portuguese RSS feeds.
Japanese Feeds - Japanese RSS feeds
RSS Israel - Israeli RSS feeds.
RSS Nachrichten - German RSS feeds.
RSS Verzeichnis - German RSS feeds.
Technorati.jp - Japanese version of Technorati.
Veneblogs - Venezuela blogs.
Weblogues - French RSS feeds.
RSS Pings List
Now that your Blog appears in several Blog and Feed directories, you would want to keep these directories & search engines notified of your latest blog updates. By pinging some of the services, they will be able to crawl/ visit your site to index the latest blog contents. You can ping them when you have created a new post or updated an old post. Fortunately for us, there are a number of useful services that make it easy for us to submit the pings to the tracking sites.
First essential step. Go to Settings -> Publishing & under Send Pings, select Yes. Whenever your blog is updated, Blogger will ping certain services that track blog changes. Rather than pinging individual tracking sites, we have been using services which help us update different sites & search engines that include Verisign's Weblogs.com, Yahoo!'s blo.gs, Technorati, Newsgator, Feedburner, Moreover, Bulkfeeds & Syndic8. All we need to do is to enter the Blog URL & blog Title & they will send the pings to all the sites we select.
Google Blog Search Ping Service - We thought we should mention this. For new bloggers who do not find their sites when they key them into the NavBar search box, ping this site.
Pingoat - A very comprehensive list of sites that you can choose to ping. The service is also very fast and it is done within seconds.
Ping-O-Matic - Less comprehensive list.
Blog Flux Ping Service - A list of sites as comprehensive as Pingoat's but the ping takes a much longer time and is not often successful.
Feeds Pings - A short list but has pretty relevant sites.
There are other services which volunteer to send the pings on your behalf. Some of them are services provided to members only. You may also ping individual sites like Technorati. However, we think that the above services would have sufficiently covered many of the popular tracking sites.
Of course, we shall update this list.
Read more.....
Saturday, September 06, 2008 | 0 Comments
Between Blog Traffic Exchange & Adsense
You have promoted your blog to some search engine, web directories, blog directories, blogwalking, link exchange, traffic exchange & search engine submission service to attract more visitors to your blog. Only time that can answer your question, when my blog will be indexed to major search engine, like Google, Yahoo & MSN and when my blog will be received many traffic. It is a reward that website owners deserve for putting time & effort into their sites.
Traffic exchange networks were created to promote visitor traffic to your websites/blogs. The idea is simple – members of the network surf each other's sites. Upon setting up an account with a traffic exchange program, you will be entitled to earn credits by manually surfing other members' sites. Depending on the program, you may have anything between 0.5 to 1.0 credit for every site you visit. There is a timer at the top/bottom frame of the page to compel you to remain at the site for a period of time. This can range between 10 to 30 seconds. You are then required to click one of the images to correspond with the given image in order to proceed to the next random site. This is to prevent autosurfing hacks that may cheat the system.
2. For some programs, you can specify the category of blogs you would like to view or the sort of visitors you would like to have. The traffic is therefore targeted.
3. While viewing other member blogs, you may come across a couple of interesting ones that you can re-visit or learn from.
4. Since the programs work well only if they have a wide network of members, the administrators often conduct mini contests and games to interest the members. You may find some fun in these communities.
“It has come to our attention that invalid clicks or impressions have been generated on the Google ads on your site(s) through users of third-party programs paid or provided with other incentives to visit your site. Such programs may include, but are not limited to auto-surf, pay-to-surf, pay-to-read, or pay-to-click sites.”
2. A number of the sites that register with traffic exchanges are new sites & are not worth the time reading. Many of the established ones that have a good following of readers don’t need such traffic exchange programs to boost their traffic.
3. After surfing for a while, you would also find yourself looking at the same sites over & over again, simply because only a fraction of the members are active users. It may be boring in that sense.
4. While I make it a point to read some sites, I believe that many people don't. They may be doing their homework or watching television & mindlessly clicking the image after every 30 seconds or so. You may be getting more visitors but these aren’t the people who appreciate your blog contents.
Another 2:1 ratio traffic exchange. Nothing fanciful about the site, and the administrators should do more work to build up their membership base.
EasyHits4U
This is another 1:1 traffic exchange site that seems to have more commercial sites registered with them than blogs. It has a 30-second timer giving viewers a lot of time to view the blogs. The thing that stands out is that they pay you cash for active surfing ($0.50 for 1000 sites viewed).
TrafficG
This is not blog specific & you will see a number of non-blog websites. The ratio of 1:1 is good, and the longer surf time of 30 seconds means that you might get more quality traffic, people who browse your blog contents.
The surf ratio is 2:1, i.e. for every 2 blogs you visit, 1 person will visit yours. The saving grace is that they have about close to 50,000 blogs registered, although I have an inkling that only a small percentage of these are active. They do run contests like Battle of the Blogs which add to the fun of using their service.
This has a 1:1 ratio, which means that for every site you visit, someone will visit yours. The surf timer is 25 seconds & the site layout, ideas & image icons (with the 2 big eyes) are pretty.
Linkreferral
I happened to come across this site last week. Essentially, when you register your blog with them, other members can review your site, give a rating & post comments. The more sites you visit/review, the higher your blog rank will be & the more likely that your blog will be seen by others. Unlike the other programs, you will expect visitors to go through what you write in order to review your blog.
Generous 2:1 ratio and you can get 10% bonus traffic on referrals.
You can earn an additional 10% Bonus Traffic on all impressions earned by other webmasters that join from your background Exchange windows. And Earn $1.00 for each active new Bravenet members referred through your Affiliate links.
3:1 Surf Ratios for free, 10 Second Surfbar Timer, 5% Referral Earnings, 7:10 Banner Exchange and Up to 25% Surfing Bonus.
2:1 View to Visitor Ratio 20 Second Timer, 50% Direct Referral Affiliate Commissions, Receive cash for active surfing ($0.09 for 1000 sites viewed), Earn Traffic Credits for unique visitors through your referral link for free account.
Read more.....
Saturday, September 06, 2008 | 0 Comments
Handphone is Riskier from Smoke
Smoking danger for well-being really unquestionable. But who suspects far handphone use more endangers your well-being. dr Vini Khurana, nerve operation expert mention that handphone radiation can more kill than smoke danger. Follow Vini from data 10 the last year, since handphone use begins to mushroom, brain cancer sufferer total increases up to twofold. dr Vini & team has flattened the watchfulness result & team hits handphone use danger in a well-being journal.
Conclusion from entire watchfulness there tight connections between brain tumor with handphone use. And most worry about, handphone use biggest risk in children.
Vini also compare, if every year it 5 million person dieds because smoke, i don't know how many that will lose soul because handphone use that over do. Remember handphone user total thrice more than smoker. This watchfulness is really not yet admitted by who, but at beginning year this several developed countries has regulated the member handphone use. Mention France and Germany call the people to decrease handphone use. So there is nothing wrong to begin to controls your handphone use time! |
Read more.....
Thursday, September 04, 2008 | 0 Comments



