Traffic
You are browsing the Traffic tag archive.
What is Traffic Blazer?
Traffic Blazer is a service designed to generate traffic to your Web site by helping you prepare, analyze, optimize, and submit your Web page(s) to key Internet search engines and directories. According to the Georgia Institute of Technology, 85% of Web users reach their destination through Internet search engines and directories, while research from Jupiter [...]
5 Effective Ways to Promote Your Website For Free Online
1. Generate Targeted Traffic from Online Discussion Forums.
2. Write Articles or Free reports for other webmasters to publish.
3. Do Joint Ventures with List owners and Webmasters.
4. Leverage the power of your email Signature.
5. Exchange Links with Other Webmasters.
Redirect Old Domain To New Domain & Other Tricks
The best way to redirect an old web site to the new web site and keep the same search engine rankings is to use the permanent 301 redirect by creating an .htaccess file and adding some snips of code.
When a visitor/search engine requests a web page, your web server checks for a .htaccess file. Using [...]
Redirect Url - JavaScript
Occasionally, you may wish to have a redirect page that pauses for a few seconds before sending the visitor off to the destination. For example, there may be important text on the redirect page you wish the visitor to get a chance to read, or a banner ad to see before proceeding. This redirect script [...]
Simple webpage counter
Here’s a very simple webpage counter which can be used in any html page:
First open your notepad. Copy and paste this piece of code inside:
Code:
<?php
$myfile = fopen(”counter.txt”,”r”);
$count = fgets($myfile,10);
fclose($myfile);
$count+=1;
$myfile = fopen(”counter.txt”,”w”);
fwrite($myfile, $count);
echo “document.write(’You are visitor number $count’)”;
fclose($myfile);
?>
Go to Edit then “save as”. Before saving, make sure the format drop down tab is set for any [...]
Randomize Your Button Friends
Got alot of friends you link to? Want to randomize their small buttons? You can randomize anything really with this script. Check it out… Have some fun!
Code:
<?
$Buttons = 5; // # of button to show
$Img[] = “<a href=’http://www.friend1.com’><IMG src=’images/1.gif’></a>”;
$Img[] = “<a href=’http://www.friend2.com’><IMG src=’images/2.gif’></a>”;
$Img[] = “<a href=’http://www.friend3.com’><IMG src=’images/3.gif’></a>”;
//over and over like [...]
Automatic Redirection
Have you ever wanted to redirect your visitors to another website? Like for instance - if your website moved from a free site to your own domain name. Of course, you could put a simple hyperlink on your old page, but that doesn’t guarantee people will go to your new page.
One option is to simply [...]
Reload your page automatically or load visitors to another
Here are two examples for auto loading a page - your’s or another’s. Have some fun!
To reload your webpage automatically place this piece of code between your header tags as shown in the example:
Code:
<HEAD>
<META HTTP-EQUIV=REFRESH CONTENT=5>
</HEAD>
CONTENT=5 means wait for 5 seconds to reload the page. You can change this to [...]
Number of People on a Page
Open up your notepad and save the current BLANK document as usersonline.txt (do not put anything in this document) - click edit->save as and place it in a folder where you can upload it later.
Close that document.
Open up notepad again and add the following script:
Code:
<?
$remote = $_SERVER["REMOTE_ADDR"];
$file = “usersonline.txt”;
$timeoutseconds [...]
Avoid the GoogleBot
Do you have pages that you do NOT wish for Google to index into their search engine?
You know, like private files and such….Place this meta tag into every page you do not want Google to crawl into.
<meta name = “robots” content = “noindex”>




