Halaman

Tampilkan postingan dengan label traffic. Tampilkan semua postingan
Tampilkan postingan dengan label traffic. Tampilkan semua postingan

Selasa, 13 Juli 2010

Using server-side includes (SSIs) to add content to your web pages

What is an SSI?

A server-side include is code in a web page that tells the
server to add some specified information at that point in the page. It's
a way to extend the content of your page in some useful ways.


Caution: SSIs don't work on every web
server, and the details vary from one to another. This page describes
features which I know work on Apache and Microsoft IIS servers, and are
probably applicable to others.


Ask your web hosting company if (a) you can use SSIs, (b) what file
naming conventions you have to use for them to work, and (c) where you
should keep the files that use them. Then, as long as the answer to (a)
is yes, you can get started.


How do they work?


Unless otherwise instructed, a web server just sends the content of a
web page to the client, your browser. But for an SSI to work, the
server must parse (read) the file, find all the SSIs, and process them
before sending the content to the browser.


The web server can be set up to parse all files (not usual), in which
case, you can name your files with the usual .htm
or .html extensions. However, the usual case is
to have a specific extension set up for parsed files - usually .stm, .php or .asp.
If you use the wrong extension, the SSIs will just be ignored. The
folder that holds them must have appropriate execute or scripting
permissions too, or they will not work.


What can they do?


There are three main uses: to take standard text from another file
and insert it into the page (include files), to insert the value of a
variable quantity into the page, or to run a CGI script other than as
the action of a form.


I'm going to cover the basics here: include files, and some
variables. Many ISPs forbid the running of executables this way because
it can be a security risk, so I'm not going to discuss them here. If you
want detailed information on everything that can be done, a useful
starting point is the link to external site Apache site, or if you have a commercial web
server, the manufacturer's site or the online help should have details
of which directives and variables are available for its product.


Including files


To include some standard text (for example, a disclaimer or
copyright), put one of these lines in your parsed web page where you
want it to appear:


<!--#include file="<em>filename.ext</em>" -->
<!--#include virtual="<em>/path/filename.ext</em>" -->

Note that although this looks like an HTML comment, you must put a
space before the closing -->. Use the first
form if the file is in the same directory or you are specifying a
relative pathname (e.g. ../../copy.inc); the
second for an absolute path (e.g. in another virtual directory - /includes/footer.inc), but never a full HTTP URL. The
file should contain either plain text or HTML markup (inbcluding scripts
of couurse), and can have any name you like, though a .inc
extension is conventional.


Example:


If the file copy.inc includes this text:


<p>The complete contents of this site are copyright <br />&copy; Lois Wakeman 1999-2008 except as expressly noted.</p>

then, if you have this code in your web page:


<!--#include file="copy.inc" -->

you will see this in the browser:


The complete contents of this site are
copyright © Lois Wakeman 1999-2008 except as expressly
noted.


Adding variables to the page


The web server has access to certain standard variables and file
information, which you can put in your page. The most useful for the web
page author are probably:


  • <!--#flastmod virtual="/path/filename.ext"
    -->
    , and its file equivalent, which return the last modified
    date for the specified file.
  • <!--#fsize virtual="/path/filename.ext"
    -->
    , and its file equivalent, which return the size of the
    specified file.

    For example, on a downloads page, it might be useful to have this
    code:


    <a href="/help/styles.zip">Download</a> this file,<br />size <span class="highlight"><!--#fsize virtual="/help/styles.zip" --></span><br />(last updated on <span class="highlight"><!--#flastmod virtual="/help/styles.zip" --></span>).

    which appears in the browser like:


    Download
    this file, size Kb
    (last updated on ).


  • <!--#echo var="variable" -->,
    which returns one of a number of variables concerning the web server's
    environment, the current page, how it was fetched, by whom, etc. Some
    variables that may be useful for web pages are DOCUMENT_URI,
    DATE_GMT, DATE_LOCAL,
    and LAST_MODIFIED, for example:
    • This document can be found at http:/
      - variable DOCUMENT_URI
    • It's
      in Uplyme - variable DATE_LOCAL
    • The page was last modified on
      - variable LAST_MODIFIED


Pros and cons


If you have a large site with a lot of common page elements, include
files can make a big difference to how easy it is to maintain the site.
Instead of updating, say, 50 pages with the same menu or navigation bar,
you can just update the include file once.


Because all the processing is done at the server, you do not
introduce any browser compatibility problems using them. For example,
you can insert the last modified date using JavaScript, but that won't
work for everyone.


Because a page containing SSIs must be parsed, there is a small
processing overhead, but this is not generally significant in my
experience - though a very long page might be noticeably slower to load,
I guess. (But you don't have any of those, do you?)


If you have made a mistake on a parsed page (for example, an include
file cannot be found because the path is wrong), users will get a
message different from the familiar 404 error, which may confuse them
(for example, error processing test.asp file).
This is only a problem if you don't test your pages properly before
publishing them!


So, on balance, if you need the facilities offered by them, I'd say
they were worth the trouble of learning and using.

JavaScript "document.write"

One of the most basic JavaScript commands is document.write.
This simply prints the specified text to the page. To print text
literally, enter the text in single quote marks inside parentheses like
so:


	document.write('Hello World!');

The code above will cause the phrase "Hello World!" to appear on the
page.


You can also use document.write to print
variables. Enter the variable name without quotes, like so:


	var mytext = "Hello again";<br />	document.write(mytext);<br />

Note that if quote marks are placed around the variable name, the
variable name itself will be printed (instead of the variable value).
You can also combine variable values and text strings by using the +
sign:


	var colour1 = "purple";<br />	var colour2 = "pink";<br />	document.write('<p>colour1: ' + colour1 + '<br>colour2: ' + colour2 + '</p>');<br />

Notice the way the variable names are used literally as well as for
passing the values. This will print the following:



colour1: purple
colour2: pink



Remember, text inside quotes will be printed literally, text with no
quotes is assumed to be a variable.

colour1: purple
colour2: pink

How to Update Multiple Web Pages Using JavaScript

Using JavaScript, you can create a separate file which contains
content for your web page. To update all the pages simultaneously,
simply update the JavaScript file.

Pros:


  • Easy to implement.
  • Does not rely on any special HTML extension or server configuration.


Cons:


  • Relies on the user having JavaScript enabled.
  • Updates are more tricky than other methods.



Step 1: Create JavaScript File


Create a plain text document and name it with a .js
extension, for example masterscript.js.
Using the JavaScript document.write
method
, enter the content you want to be displayed on every page
like so:



document.write("<div style='color:blue; font-size:12pt;'>");

document.write("© Copyright Myname 2004");

document.write("</div>");


Note: You don't need to include script tags in this file.


Step 2: Add JavaScript Code to Pages


On every page where you want the content to appear, insert the
following code:


<script language="JavaScript" type="text/javascript"
src="masterscript.js">

</script>


To change the content on every page, edit the contents of the masterscript.js file.



How to Update Multiple Web Pages Using Server Side Includes

SSI (Server Side Include) is a simple and robust way to include
common content in multiple pages. In a similar way to the client-side JavaScript method, SSI involves having a separate file which contains the content you wish to appear on multiple pages. To update the content, you only need to edit a single file.

Pros:
  1. Server-side is safer than client-side (it doesn't rely on any
    browser settings).
  2. Updates are very fast and easy.

Cons:

  1. Slight performance overhead at the server end (every SSI page needs
    to be processed by the server before it is served to the user).
  2. You usually need to use a special extension for web pages, e.g. .shtml.
  3. The server must support Server Side Includes (most Apache servers
    do).



Step 1: Create the SSI File


Create a plain text document and name it with a .txt extension, for example navigation.txt. Save
this file in a folder which is accessible from your whole website. You  may want to make a special folder for this type of file, e.g. /includes/.

Into this file, enter the content you want to be displayed on every  page, for example:


<div style='color:blue; font-size:12pt;'>

<a href="page1.shtml">Page 1</a> | <a
href="page2.shtml">Page 2</a> | <a
href="page3.shtml">Page 3</a>

</div>


Step 2: Insert the SSI Code into Your Pages


On each page, at the point where you want to the content to appear,  place the following code:

<!--#include virtual="/includes/navigation.txt"
-->

To update the content, simply edit the main SSI file and all pages  will automatically update.



Notes:

  • In most cases you will need to change the file extension of your web
    pages to.shtml. If this doesn't work, ask
    your provider for help.
  • If you're creating your pages on a home computer, the SSI includes
    will not show up unless you're running a personal web server. You will
    probably need to upload the pages to your website before you see it all
    work properly.


Kamis, 24 Juni 2010

Tips Mendapatkan Traffic dari Twitter

Twitter adalah salah satu situs jaringan sosial yang terbaru dan terbaik untuk mendapatkan traffic.  Jadi, jika Anda belum  memiliki account Twitter, segeralah membuat satu account.

Twitter sangat mudah digunakan dan inilah yang membuatnya begitu populer.  Bahkan pencipta Twitter mengakui bahwa seperti MySpace dan Web 2.0,  popularitas twitter suatu saat akan menurun. Jadi anda harus bergerak  cepat untuk mendapatkan traffic dari Twitter mulai dari sekarang.

Tidak seperti kebanyakan dari situs social network lainnya dimana Anda bisa mendapatkan trafik secara gratis. Twitter Microbloggingadalah sebuah platform, yang membatasi  jumlah karakter dalam pesan. Oleh karena itu, Anda harus membuatnya dengan singkat dan gunakan ruang Anda dengan optimal.  

Tips Mendapatkan Traffic Dari Facebook

Facebook adalah situs jaringan sosial yang paling populer saat ini. Ada banyak jaringan sosial lain sebelum Facebook, tapi beberapa dari mereka yang populer pada beberapa waktu yang lalu, tidak ada yang bisa mencapai popularitas seperti Facebook. Selain tetap berhubungan dengan teman-teman Anda, Facebook dapat digunakan untuk bisnis. Anda dapat menggunakannya untuk mempromosikan produk dan jasa Anda, untuk mendapatkan klien baru, atau untuk mendapatkan lalu lintas ke situs Anda.
Seperti Twitter, Facebook adalah salah satu dari banyak cara untuk mendapatkan lalu lintas ke situs Anda. Banyak pemasar percaya bahwa ini hanyalah masalah waktu untuk mendapatkan traffic dari Facebook, Twitter dan yang lainnya. Percaya atau tidak Situs jaringan sosial saat ini bisa mendatangkan traffic ke situs 
melebihi traffic yang di dapat dari search engine, seperti Google.


Tidak seperti Twitter, yang sangat sederhana, Facebook menawarkan lebih banyak kelebihan. Ya, Anda mungkin membutuhkan lebih banyak waktu untuk mengeksplorasi semua kelebihan dan mengambil keuntungan darinya tapi mudah-mudahan upaya ini akan memiliki return besar dalam hal lalu lintas. Berikut adalah beberapa tips untuk anda

Metadata Elements - Robots META Tag






The Robots META Tag is meant to provide users who cannot upload or control the /robots.txt file at their websites, with a last chance to keep their content out of search engine indexes and services.

Examples of the Robots META Tag

The content="robots-terms" is a comma separated list used in the Robots META Tag that may contain one or more of the following keywords without regard to case: noindex, nofollow, all, index and follow.
noindex
Page may not be indexed by a search service.
nofollow
Robots are not to follow links from this page.
Admin Note: The robots directives of index, follow or all are not required as it is the default behavior of indexing spiders.

index
Robots are welcome to include this page in search services.
follow
Robots are welcome to follow links from this page to find other pages.
If this meta tag is missing, or if there is no content, or the robot terms are not specified, then the robot terms will be assumed to be "index, follow" (e.g. "all"). If the keyword all is found in the robots terms list it overrides all other values. That is, a robots terms that is "nofollow, all, noindex, nofollow", would effectively be "all".
If the robots terms contains contradictory information (e.g. "follow, nofollow, follow") then the robot is free to do whatever it wishes with regard to the behavior being addressed (in this case the follow behavior).

Common Usage for the Robots META Tag

The Robots META Tag is used for excluding content. We've included three (03) examples below of using the robots meta tag correctly to exclude information from search engine indexes and services.
  1. A robots term of noindex allows the links on that page to be followed, even though the page is not to be indexed.



  2. A robots term of nofollow allows the page to be indexed, but no links from the page are followed.



  3. A robots terms of noindex, nofollow neither the page or the links on that page will be followed or indexed.





Selasa, 22 Juni 2010

Menghubungkan Blog dengan Twitter


Saat ini, selain facebook kita mengenal twitter sebagai social networking yang banyak dipergunakan. Bila anda punya banyak follower twitter maka anda juga perlu mengarahkan mereka untuk membaca artikel di blog anda.

Untungnya WordPress memiliki plugin yang bermanfaat untuk itu. Namanya WP to Twitter. Dengan plugin ini, anda bisa menghubungkan artikel di blog anda dengan twitter. Sehingga setiap kali anda update artikel, maka plugin akan secara otomatis melakukan update terhadap twitter anda.
Ini tentunya akan sangat menyenangkan bukan?
Selain itu, anda juga bisa mengatur bagaimana tampilan di twitter anda. Misalnya anda menambahinya dengan kata-kata seperti Baru Update Blog… atau apa saja.
Well, silahkan anda coba-coba sendiri deh. Oh iya, plugin ini juga terintegrasi dengan Bit.ly danCli.gs. Untuk cli.gs sendiri, anda bisa melakukan pengecekan berapa banyak klik yang anda dapatkan melalui cli.gs. Oke, selamat mencoba yah

Senin, 14 Juni 2010

Mendaftarkan blog di 29 search engine


Supaya pengunjung blog kita semakin hari semakin ramai, maka selain link-exchange cara lain yang dapat kita lakukan adalah mendaftarkan blog kita pada search engine, seperti Google. Semakin banyak kita daftarkan maka semakin besar peluang blog kita untuk dilihat dan tentunya akan menarik pengunjung juga.



Untuk itu pada Belajar SEO kali ini kita akan mendaftarkan blog kita di 29 Search engine secara bersamaan dengan memanfaatkan fasilitas dari Mypagerank.net. Terlebih dahulu anda dapat mendaftar nya disini.
  1. Setelah mendaftar maka Login lah dengan Username dan Password anda. Kemudian masuk ke menu "engine submit" seperti yang ditunjukan gambar berikut ini.



  2. Masukan link Blog atau websites dan email anda, lalu centang tanda "Select", setelah itu tekan tombol "Submit my site"



  3.  Tunggu beberapa saat, maka akan keluar hasil seperti berikut ini.




  4. "Submission Complate" artinya, Blog atau website anda berhasil didaftarkan.

    "Submission Failed" artinya, Blog atau website anda gagal didaftarkan, untuk itu anda dapat mendaftarkan secara manual dengan mengunjungi situs search engine tersebut.

    Semoga bermanfaat

BackLink dari situs Social bookmarking ber-PR 9.


Ada berbagai cara untuk mendapatkan backlink,  salah satu cara yang lebih efektif untuk lebih cepat mendongkrak PR kita adalah kita perlu mendapatkan BackLink dari Situs/Blog Dofollow yang memiliki PR yang lebih tinggi dari punya kita sendiri salah satunya bisa kita dapat dari situs social bookmarking. Untuk itu, berikut daftar beberapa situs social bookmarking Dofollow beserta PR-nya ( Posisi PR didapat pada saat post ini diposting).

Jika ada yang kurang, sila ditambahkan.
Jika ada yang lebih sila dimanfaatkan.

Rabu, 09 Juni 2010

Setting up BlogRolling.com

BlogRolling is a Blogroll webservice that helps people manage the linklists on their blogs. It is easily set up and allows the user to add, delete, or reives links. You can also change the theme of your linklist to match the theme of your site. It helps to order links alphabetically, randomly, or by date. It is helpful for professional bloggers.


Up until now I'd been maintaining this list in various different ways through the years: hand-updated, various small link directory scripts, and finally Movable Type. However, I usually have around 50 links on my list, and it was getting tiresome to have to click on each link every single day to see if the site had been updated. And this, boys and girls, is the main reason I switched to BlogRolling: it keeps track of when blogs are updated, and newly updated blogs can be distinguished in your list, by adding an image or some HTML to that link automatically. Even better, you can sort the links by last updated date, having the most recently updated site at the top.
Sound good? Read on, because I'll explain in full detail how to use this and customize it to only show the last 10 (or any other random) in your sidebar, and the full list on a separate links page.
And if you're not interested in using blogrolling on your own site, read the tutorial on Pings instead. It will explain how you can make your blogging system notify blogrolling.com whenever your blog has been updated, so that you'll appear at the top of other people's link lists and get more hits. :)
This is all quite easy to do, I promise. :)

Senin, 07 Juni 2010

What is a Blogroll?

How Bloggers Use Blogrolls to Boost Traffic to Their Blogs

A blogroll is a list of links to blogs that the blogger likes. A blogroll is usually included in the blog's sidebar. Some bloggers divide their blogrolls into categories. For example, a blogger who writes about cars could divide his blogroll up into categories for links to other blogs he writes, other blogs about cars and other blogs he likes about unrelated topics. The blogroll can be set up based on each blogger's personal preferences, and it can be updated at any time.

Blogroll Etiquette
It's an unwritten rule in the blogosphere that if a blogger puts a link to your blog in his or her blogroll, you should reciprocate and add that blog's link in your own blogroll. Of course, each blogger approaches this with their own blogging goals in mind. Sometimes you may not like a blog that links to you through its blogroll. There are many reasons why you may decide not to reciprocate a blogroll link, but it's good blogging etiquette to at least review each blog that links to you through its blogroll to determine if you'd like to add that blog to your own blogroll or not.

Blogrolls as Blog Traffic Boosters
Blogrolls are great traffic driving tools. With each blogroll that your blog is listed on comes the possibility that readers of that blog will click on your link and visit your blog. Blogrolls equate to publicity and exposure across the blogosphere. Additionally, blogs with many incoming links (particularly those from high quality blogs as rated by Google page rank or Technorati authority), are usually ranked higher by search engines, which can bring additional traffic to your blog.

Minggu, 06 Juni 2010

Cara terbaru dab tercepat untuk Meningkatkan PageRank.

Meningkatkan Page Rank Blog dalam waktu singkat? Ini TIPS MENINGKATKAN PAGE RANK TERCEPAT, hanya dalam sekali Up date Page Rank Blog naik menjadi 3. Woww! Tenang, pelan-pelan dan perhatikan kemudian praktekan dengan teliti supaya tidak salah langkah dan usaha untuk menaikkan page rank tidak sia-sia.

Bagaimana caranya?

Belajar Seo tentu saja. Meningkatkan Page Rank dimulai dengan mencari Backlink . (ya.. itu mah udah tahu..) Tenang dulu. Backlink yang di cari bukan sembarang backlink melainkan backlink berkualitas yang bisa meningkatkan page rank dengan cepat yaitu Backlink dari blog yang Ber Page Rank 3 ke atas.

Untuk meningkatkan Page Rank menjadi PR 3 hanya perlu 1 buah backlink dari situs ber Page Rank 5.


Seperti yang diberitakan CheckPagerank.net, untuk menigkatkan Page Rank menjadi PR 3 kamu cukup mendapat backlink 1 buah dari blog PR 5, cara lain meningkatkan Page Rank menjadi PR 3 yaitu dengan cara mendapatkan backlink sebanyak 19 buah dari Blog PR 3! bukan Sesuatu yang sulit kan!


Itung aja.. Kalo sehari kamu dapat 4 Link PR 3 saja, dalam 5 hari kamu sudah memperoleh 20 backlink, maka kamu akan mendapat Page Rank 3 dalam sekali update.


Susah nyari blog ber PR 3 ke atas? tenang backlink dari blog PR 1 pun bisa meningkatkan Page Rank blog kamu. Siap-siap deh kamu blogwalking ke blog ber PR 1 minimal sebanyak 555 Blog . jangan pustus asa dulu, bayangkan kalau blog yang memberi kamu backlink page rank nya juga naik, otomatis page rank blogmu juga akan naik, jadi jangan sungkan untuk berkomentar di blog orang lain, jadi mulailah dari diri sendiri, mulailah saat ini, mulailah di BLOG INI..



Meningkatkan Page View Website dan Blog dengan Popup Windows Automatically



Popup Windows Automatically adalah suatu perintah pembuka Windows atau disebut juga popup dengan menggunakan javascript, dimana cara kerjanya yaitu jika kita mengakses Blog yang telah terpasang script popup Windows automatically, maka otomatis akan terbuka halaman baru yang bisa berupa halaman blog maupun iklan advertising.

Cara praktis untuk Meningkatkan Page View Blog Anda

Sesuai janji saya di akhir artikel sebelumnya, kali ini saya akan mengupas beberapa tips praktis yang bisa anda jalankan untuk lebih meningkatkan page view blog anda.

Tujuan kita menjalankan tips-tips ini pada dasarnya yaitu untuk lebih menambah daya pikat dan daya ikat blog kita. Dengan harapan, pengunjung bisa lebih lama mampir dan lebih merasakan manfaat dari berbagai postingan di blog kita. Juga agar pengunjung merasa lebih nyaman ketika berada di blog kita. Selain itu, tentu saja demi lebih meng-optimalkan postingan-postingan lama (agar tidak sekedar menjadi arsip tanpa pembaca). Ini tipsnya ...

7 Tips Praktis untuk Meningkatkan Page View Blog Anda:

Rabu, 02 Juni 2010

Cara Instant meningkatkan alexa rank untuk Sponsored Reviews


Kalau seandainya blog anda merupakan blog untuk monetize atau untuk mendapatkan penghasilan dari internet dengan mengikuti program paid to Reviews, salah satunya Sponsored Reviews, Alexa Rank adalah salah satu factor penentu web/blog anda di terima oleh program PTR tersebut. karena apa?
Alexa bekerja berdasarkan agregrat data history, dari para pengguna toolbar alexa dan penggunaan lainnya, yakni dengan melihat traffic, page view serta pencarian apakah ada perubahan bila dibandingkan dengan 3 bulan sebelumnya. Sehingga penting sekali untuk terus meningkatkan alexa rank tersebut dari waktu ke waktu. Karena alexa ini system penilaianya berdasarkan pencarian agregat data serta page view maka ada cara mudah yang dapat mempercepat ranking alexa anda meningkat ( nilai rank semakin kecil semakin baik) yaitu dengan cara:
1. Memasang tool bar alexa itu sendiri pada browser yang anda gunakan
download toolbar alexa untuk Internet explorer
download toolbar alexa untuk mozilla

2. Mengatur homepage browser dengan alamat blog/situs anda sendiri, sehingga setiap anda memulai koneksi internet halaman yang pertama yang diakses adalah halaman situs anda.
3. Percantik blog atau situs anda dengan widget miliknya, selain untuk aksesories juga untuk memberikan nilai tambah kepada alexa itu sendiri dalam mengakses situs anda.
4. Membuat Review mengenai Alexa itu sendiri.

Simple way to get your Wordpress Blog traffic


Want to get more links to your blog, improve your WordPress SEO, get more traffic and make lots of money? Here are some ways you can do that with little or no money.

  1. Leave Blog Comments – Yes, this still works. Jus find related blogs and participate in the comments. Make sure your comments are relevant or it will probably be deleted. Although most blogs have the "no-follow" tag attached to a commenter's URL, it still helps you in terms of direct traffic, more exposure and other stuff.
  2. Do Trackbacks – Trackbacks, just like leaving a comment, can get you more traffic and links to your blog. If you and the blog you're linking to is using WordPress, a trackback should happen naturally. Otherwise you may want to manually use the "Trackback" feature in WP.
  3. Link Exchange – Start a small link exchange with your WordPress blog, choosing a handful of high-quality partners to begin with. Use a 3-way link exchange if you have more than one blog.
  4. Trade Blogrolls – You may also want to manually look for blogroll partners. Linking up with several high-quality blogs may help in your SEO cause more than you can imagine.
  5. Use Forum Signatures – Participate in any forum regularly? Make sure you take advantage of forums that allow you to leave a signature. Choose the correct anchor words for your blog, and create a simple but powerful signature to your blog or website.
  6. Use Email Signatures – Although email signatures don't help with SEP, it can get you a lot of real-world fans and loyal readers. Just enter a good signature in your Gmail or Yahoo Mail. If your blog appeals to a mass market, this can sometimes be one of your best marketing methods, and it's so easy to do there's almost no excuse if you're not already doing it.
  7. Submit Articles – Submitting articles is an classic, text-book method of getting more links to your blog. However, dues to concerns on duplicate content, you perhaps need a better solution. Try JetSubmiter or Article Marketing Automation to make sure every article you submit is unique, therefore you get more recognized back links with just a little extra effort.
  8. Submit Blog Content – You can also use FirePow or 1 Way Links to submit the same article as blog content, and have thousands of blogs out there link back to yours. This strategy is very powerful for niche blogs.
  9. Be a Guest Blogger – Sign-up as a guest blogger for a real, authoritative blog, and with every post you submit you should also be getting a link back to your site. Many sites including WordPress HacksBlogging Tips etc openly advertise for guest bloggers. Some don't, but you can always ask the blog owner.
  10. 3 Way Links – Use Jonathan Leger's service; it works and I can prove it. I've had a few sites link first page in Google for smaller keyword terms using just this one tool. You can get a few hundred back links worth it.
  11. Publish Videos – Publish videos in YouTube, but make sure you include your website URL (example http://profitblogger.com) in the description field of each video. See this video of mine for example. Although the links are no-follow, its still recognized as a back link by Yahoo and MSN, and hopefully Google too. You can automate videos submissions too if you want using Traffic Geyser.
  12. Post A (Fake) Classified Ad – Go to USFreeAds.com and post a fake classifieds, syndicate to all their partner sites if possible. Although you have nothing to sell, you can always sell "advertising" on your blog if you get what I mean. Good opportunity to link back to your blog so your potential "advertisers" can see where their money will be spent. What is someone actually contacts you for an ad spot? Take it!
  13. Submit Press Release – Submit a press release using PrWeb.com and syndicate to as many sites as you can afford.
  14. Publish a Book – A book? Although it has nothing to do with online marketing, it can establish you as an expert in your field and people would start linking to your pages spontaneously.
  15. Write an e-book – Similar to writing a book, this time write an e-book or information product. If you think it's going to be hard work you can also use theaudio interview product creation method.
  16. Recruit Affiliates – When you have an ebook or digital products, you can start to recruit affiliates to promote for you. In comes the back links from thousands of different websites, and you'll probably be making a lot of money in the process too.
  17. Hold a Contest – Hold a blog contest, a Christmas giveaway of anything where you can give something to your readers for very little effort on their part.
  18. Join A Blog Carnival – A blog "carnival" is simply a collection of conversations on the same topic. If someone has written a post, he can start a carnival and invite other bloggers to post their own ideas and arguments, while linking to all the other posts in that particular carnival.
  19. Start a Blog Meme – A blog "meme" is more like a game of "tag", and while I used to see this quite often it doesn't seem so popular anymore. Basically you can just start a post like "10 Things About Myself You Didn't Know" or "How I Started Blogging" – anything that is personal – and then at the bottom of your post you "tag" a few people, linking to their blogs. These people then have to write their version of the same post, linking both to you (the person who tagged them) and a few other people they want to tag. Dome properly it can get you a lot of back links, but it all depends on the availability and willingness of the people you tag to play along.
  20. Content Thieves – Let people steal your content. Actually I say that because there's not much you can do about it. But the good news is that in almost 90% of the cases the copied article will link back to your original version. Plus, make sure each article you write has several "deep links" pointing to previous posts (like what I'm doing here), so even if the assholes steal one article from you they end up linking back to a few of your articles. Google will recognize your article as the original with all these links pointing back to it.
  21. Buy Text Links – Got some cash? Head on over to Text Link Ads and buy some links on popular blogs. Expect to pay a lot of money monthly for a single site-wide link, but you can also show for post-level links which are cheaper and more targeted.
  22. Buy a Sponsored Review – Similar to buying a link with Text Link Ads, but this time the links are permanent. You can signup as an advertiser withSponsoredReviews.com and order a review. A few bloggers may take up your opportunity depending on how much you want to pay. They then write a review about your blog, linking back to it. Very powerful for non-competitive markets.
  23. Buy a Sponsored Post – Similar to sponsored reviews, but this time is can be any post instead of a "review". You can announce a good post, a new resource, or a new product. Signup as an advertiser with Pay Per Post and post your opportunity. I think you can still get links as low as $5 / blog. (note: you can alsomake money from PPP and other paid blogging services as a blogger)
  24. Add a Web Directory – Get a software like PHP Link Directory or PHP Pro Bidand add a web directory to your existing blog. You can initially let webmasters submit their links for free, and when you have enough bulk you can start charging a low fee for each link they submit.
  25. Use Yahoo Answers – It's like a forum, but not quite. People go here to get help and directions for their problems. Search for questions related to your market, and give honest solutions, including links to other people's blogs and most importantly, yours too!
  26. Build Squidoo Lenses – A "Squidoo Lens" is a one-page comprehensive resource about a topic. The trick is to make each lens as good as possible in just one page. Create a new lens based on a keyword suitable to your blog, and list the best resources for that keyword including links to your affiliate programs and your blog.
  27. Build Free Satellite Blogs – This is a concept used more often in autopilot blogs than in normal blogs, but it's still useful. Build "satellite" blogs usingBlogSpot or on WordPress.com and link keywords in articles back to your main blogs
  28. Links in Your Flickr Account – If you have an active Flickr account, you make also want to include links to your blog in the photo descriptions. You can also comment on other people's photos, similar to commenting on a blog.
  29. Start a "group writing project" – Darren Rowse does this a lot, and by starting one you can get a lot of good links to your blog. In fact, you can also just participate in one and can still get a fair amount of "goodwill" links.
  30. Join a blog network – This is going for top-quality links. Attach your blog to a network like 9 RulesWebLogs Inc or other similar networks, and watch as your blog gets linked form almost every other blog in their network. Of course this is one of the hardest ways to get your blog linked, as only the best blogs are every accepted. Besides, the idea of "blog networks" isn't as popular now as it used to be a few years back.
  31. Create free WordPress themes – Works like magic, and if you create a really good WordPress theme you can have thousands of links not only from new sites, but from established ones as well. A link back to the theme creator at the bottom of each theme is pretty much widely accepted and tolerated, but keep it to just one link to be professional. You can get a theme created in RentACoder or Elance for less than $200, and make sure you list it in the WordPress themes directory after you comply to their terms.
  32. Create free website / blog templates – Just like WordPress themes, you can also create PHP Link directory skins, BlogSpot templates, normal website templates, Joomla Templates, and much more. Just look for any CMS / website building solution out there that allows changing themes and allows third-party themes.
  33. Get a Twitter account – Twitter, use it. Get an account and make sure you install the WordPress plugin for Twitter which posts all your latest post automatically.
  34. Social bookmarking – Old, but still relevant. Not a hot topic anymore these days but as long as people use services like Delicious and Digg, getting a link from them are also important. Use Auto Social Poster to automate your bookmarking, or do it manually. Also make sure you have some good social bookmarking plugins to encourage others to save your pages. You can also outsource your social bookmarking.
  35. Write a link bait article – Spend some time writing an article that other people would be too lazy to duplicate, and as a result they would just link to yours. Do a "Top X" post link this, or even a great tutorial series. This works much, much better if your readers have their own blogs :)
Any more to add? Do leave a comment below.

Sabtu, 24 April 2010

How To Start A Blog That Gets Instant Traffic






Starting a new blog can feel like an overwhelming task. Not only does it involve either developing your own template (or finding a free one), creating interesting content that people will want to read, and making the blog SEO optimized, but once you're finished developing that amazing new blog, you need to somehow get people to start visiting.
With millions upon millions of websites on the Internet, and with potentially hundreds of thousands focused on the same subject or niche that you are – developing an audience can feel even more overwhelming than trying to start a blog from scratch in the first place.
I've been working on the Internet long before it became wildly popular in the 1990s, and in the process of watching the evolution of the Internet I've come to realize and appreciate something amazing about the current incarnation of the Internet, known as Web 2.0. That something is this; If you know the rules of the game, then it is possible to start a blog that gets instant traffic from day one – and maintains that traffic into the future. Today I'd like to share 3 powerful techniques you can use to accomplish this.

Tip #1 – Write Optimized Content The First Day You Start A Blog

Many people who start a blog do so because they love writing. That's one of the reasons I started several blogs (horribly neglected) of my own. The problem is that most writers enjoy writing for the love of the process – not for the purpose of "optimizing" the content for search engines. The process of optimizing makes writers feel stifled, non-creative and cheap. Sort of like not wanting to go to Wal-Mart to save money even though you know that things are a heck of a lot cheaper there.
Writers know that optimizing is important to gather search engine traffic, but they either really understand the rules – or they simply don't care. Optimizing can take years to learn how to do effectively. Many bloggers suffer low blog traffic because they believe if they simply write amazing content – people will love it so much they'll keep coming back for more. This may be true – but it'll take you years to accomplish, versus months if you use SEO effectively.
Abhijeet offered a fantastic list of SEO tools that you can use to come up with high-value keywords for your posts. One of those tools that I would highly recommend to all bloggers is the Google Adwords tool. Using this tool the right way, you'll be able to start writing your very first blog posts that target exactly what people are searching for online.
What's the "right way" to use Google Adwords? It's very simple, just brainstorm general topics that you want to write about and enter those, one at a time, into the "Descriptive words or phrases field." When you click "Get keyword ideas," you'll see a very long list of keywords and statistics appear at the bottom. Next, click on the blue column header "Global Monthly Search Volume" to sort the results by how many searches occur for each term every month.
If you find your keyword doesn't have a lot of traffic, scroll down to the section titled, "Additional Keywords to Consider."
Here's the basic SEO rule #1 that I'm going to share with MUO readers. Most bloggers see a keyword with very high search traffic and think, "oooh, a goldmine!" They then proceed to expend tremendous effort writing up a brilliant post using that phrase, only to end up on page 25 or 30 of Google results for that search term. Why? Because the secret of success when choosing keywords where your new blog (or even professional blog) can compete is choosing keywords with very low competition (that cool-looking blue bar graph on the left). Choosing keywords with very high search traffic each month and very low competition will bring traffic to your site the moment Google next crawls your blog. Speaking of which, did you take Karl's advice and submit your site to Bing and Google yet?

Tip #2 – Engage The Blogosphere Every Single Day

If you want to get a lot of traffic to your new blog from day one, you've got to give people who are interested in the topics you write about a good reason to visit your blog. One of the first things that I noticed when I started using Facebook is that it's human nature for people to check out your wall if you take the time to post on theirs. The same is very true about the world of blogging, but on a much larger scale.
When you post a thoughtful comment on someone else's blog, not only will the blogger probably check you out, but so will readers who like your comment. To do this effectively, you should use a tool like Ratingburner or Technorati to find the most popular blogs on the net within the niche that you write about.
Using Technorati to find similar blogs to my own blog FreeWritingCenter, I discovered one high-authority blog, AListApart, with fresh content just waiting to receive a good comment. You may need to sift down the list for blogs that are relevant to yours (I did).
Visit the other blogs, and if you aren't already a subscriber then become one. Your new blog will not take off unless you're ready and willing to engage the blogging community and contribute to other blogs as much as you want other people to contribute to yours. When you post a comment – don't do it without reading the post you're commenting on. Don't be one of those annoying spammers – you're trying to engage a community, not get free marketing for yourself.
The general rule of thumb here is to only post on blogs that allow you to include your URL, be positive and always compliment the blogger, and finally always reference one or two important points in the blogger's post – this proves that you actually read the article and found it interesting. A well written comment can go a very long way toward immediately attracting interested readers (and fellow bloggers) to your own blog.

Tip #3 – Becoming an Active Member of the Forum Community

The third most effective way to get instant traffic to your blog is to engage forum communities filled with folks who share an interest in the topic that your blog covers. Either generate a new thread, or comment on an existing thread that covers something you wrote about.
Finding a forum based on the topic of your blog is usually as simple as typing it into Google as something like, "writing forums." Although, I would highly recommend taking Darko's advice and useforum search engines which are often far more effective since they specifically target forums. Using BoardReader, I found a great webmaster forum post about writing at the V7 Network.  When you register, don't forget to include your URL in your forum profile (most forums have a field for this).
Forum etiquette is to avoid posting your own URL in the very first few posts. Simply engage in a conversation with forum members. Once you prove to the forum administrators that your goal in engaging the forum community is to have a conversation and not just advertise yourself, they'll be far more willing to let you quote (and link) from your own blog every now and then. But the first step at any forum is just to get engaged in a quality conversation with other folks.
Forums can help in a lot of ways. Readers who find your comment interesting may click on your profile to check out who you are – and there, they'll find the URL to your blog. Additionally, many forums (such as the one above), allow you to post a link in your signature after you've made a certain number of forum posts. This assures the forum administrators that you're not only there to market yourself, and it eventually allows you to have a link back to your blog on every single post you make – which is a very powerful way to get a lot of traffic to your blog.
Forget about all of the silly instant marketing gimmicks that you find online from "SEO experts" that claim they can get you thousands of visitors a day. The unfortunate fact is that these are typically scams that use spamming techniques that'll get you penalized by Google in the end. The most effective way to "grow" your blog in a very organic and long-lasting way is to make sure all of your content is optimized, and then start spending an hour or so a day just engaging the online community that shares your interests.
Do you have your own unique techniques to draw instant traffic to a new blog? Share them with other MUO readers in the comments section below.