Boost your Search Engine Ranking with PERMANENT BACKLINKS to your website using your chosen keyword
 

Webmaster Tips

Register a domain .Com .Net .Org .Info for $1 Only | Limited Offer

Posted by Sheriff 2 August, 2010 (1) Comment

Get your own domain name ( from .com .net .org or .info ) registered for only $1. Limited time offer. What more when you get great features including free quality hosting.

1. Goto DotEasy.com
2. Search Your Domain Name
3. Check Availability of your favourite .com/.net/.org/.info others
4. Do not select any paid services in later steps.
5. Opt for free hosting.
6. Use coupon code 201007FB1N
7. Signup and checkout.
The offer is for limited time only. No Paypal. Only Credit Card Payment.
To Your Success
Sheriff

Popularity: 1% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Categories : Coupon Codes,Free Web Hosting,Webmaster Tips Tags : , ,

HowTo: Create your own Bit.ly or Tinyurl.com Website from Scratch .

Posted by Sheriff 28 November, 2009 (0) Comment

Shortening a long address into a short one is now becoming very famous and especially in sites like twitter and blogs. I was always think that i need to deal something that is useful for people and finally decide to show you guys how to create a tiny url site like Bit.ly or Tinyurl.com

First the requirements:

If you are doing on your local machine:

You require the following
1. Apache
2. PHP
3. MySQL

or you can go for complete automation system like WAMP for Windows, MAMP for MAC and LAMP for Linux operating system.

In this whole tutorial i will be using WAMP.

If you are doing on a remote host, it should support:

1. PHP
2. MySQL
3. .HTACCESS

Coding Up:

I will not go in depth about installing the above servers but there are already lot of tutorials on this and still if you want to contribute a tutorial you can be a guest author.

I don’t want to make this post boring so i will go simple and easier for any users. I hope you are a bit familiar with PHP and mySQL and even if you are not you can download and run it but still it becomes like a copy and paste.

Phases that we develop:

1. Allowing User to add a long URL
2. Allowing user to add his own alias name
3. Validating the availability of Alias name
4. Storing the long URL into MySQL
5. Count system
6. Playing with .htaccess
7. Retrieving the long URL

Phases you can expand:
1. Log In System where register users can manage the URL’s added by them
2. Create a graph system using counts and date to let the user know visits to a particular URL

The 1st phase:

Here first let us create a MySQL database. I hope you guys know how to create a mysql data.

I will be creating the database name as “gotiny_base”  and let us Create a table called “url_tables”

These are all the fields a table must have.
Alias – Varchar[20]
URL – text
count – Integer
date – Timestamp

Here is the MySQL Code:

1.CREATE TABLE `gotiny_base`.`url_tables` (
2.`alias` VARCHAR( 20 ) NOT NULL ,
3.`url` TEXT NOT NULL ,
4.`count` INT NOT NULL ,
5.`date` TIMESTAMP NOT NULL
6.) ENGINE = InnoDB
Now MySQL work is completed now let us goe to HTML and CSS Part.

Here is the CSS code “mystyle.css”:
01.body{
02.margin:0;
03.padding:0px 0 10px;
04.background:#616E76;
05.color:#999999;
06.font-family:"Lucida Grande","Lucida Sans Unicode",sans-serif;
07.font-size:11px;
08.}
09.
10.#wrap{
11.margin:5em 10em 2em 25em;
12.width:500px;
13.}
14.
15.#box-a{
16.width:100%;
17.height:auto;
18.background:#FFFFFF;
19.-moz-border-radius: 2px;
20.-khtml-border-radius: 2px;
21.-webkit-border-radius: 2px;
22.overflow:hidden;
23.}
24.
25.#forms{
26.padding:1em;
27.}
28.
29.#formwhat{
30.clear:both;
31.color:#888888;
32.text-align:right;
33.}
34.
35.#forms input.text{
36.font-size:1.5em;
37.width:98%;
38.}
39.
40.#forms input.alias{
41.font-size:1em;
42.width:240px;
43.}
44.
45..button{
46.background:#2E5D79;
47.border-color:#DFF2FF #888888 #888888 #DFF2FF;
48.border-style:solid;
49.border-width:1px;
50.color:#FFFFFF;
51.cursor:pointer;
52.font-size:1.5em;
53.margin:0 0 0 1em;
54.padding:0.2em 8px;
55.}
56.
57..footer a{
58.color:#FFFFFF;
59.border-bottom:#FFFFFF 0.1em dotted;
60.text-decoration:none;
61.}

Now the HTML code “index.html”:

01.<div id="wrap">
02.<div id="box-a">
03.<form id="forms" method="get">
04.
05. <label>Drop your long URL
06.<input id="originalurl" class="text" name="originalurl" type="text">
07. </label>
08.
09.Pick your Alias name (OPTIONAL):
10.
11. <label></label>
12. <span class="style1">http://gotiny.co.cc/
13.<input id="alias" class="alias" name="alias" type="text">
14. </span>
15.
16. No white space and minimum 4 characters.
17.<div id="formwhat">
18.<input id="create" class="button" name="create" value="Tiny URL" type="submit"></div>
19.</form>
20.</div>
21.<div class="footer"><a href="http://">This code is written by Programmer
22.</a>| <a href="http://">Download this Code for FREE</a></div>
23.</div>
In the above html code we are using a for with digit text field one is originaltext field and another one alias. Here in originaltext a user inputs the original URL and in alias he can put his own alias name so that he can remember, but we are making this as optional so that if he leaves that field blank then we must generate a haphazard alias name
Here is the current front end view:
HowTo: Create your own Bit.ly website from Scratch Now we have finished the front end it time to work on our main system. This system will store the original URL and create an alias name.

The PHP Part:
1st the cofiguration page “config.php”:

1.$Database_Username = "username";
2.$Database_Password = "password";
3.$Database_Name = "gotiny_base";
4.$Database_Host = "localhost";
5.$DBConn = mysql_connect($Database_Host, $Database_Username, $Database_Password) or die("Unable to connect to our database server. Check your settings.");
6.$DB_DB = mysql_select_db($Database_Name, $DBConn) or die("Could not connect to database ($Database_Name). Perhaps you don't have the right permissions on this DB. Check your settings");

In the above code we use it for connecting to the database please give you database information like mysql username, password and host. We can import this into our action page.

Now we have created our config page to connecting our website to our MySQL its time to create an action page which actually performs action in storing the original url, throwing errors, creating a random alias name.

I hope you all got a clear picture in mentioned above. We exclusive covered the CSS and Front End part, now we need to create actions and validations page to shorten the link successfully.
For validating and showing results we will be using Mootools (a AJAX framework) i will not be explaining in detail on mootools right now.

Here is the actions.php file:

1.//To post values from index.html
2.$url=$_POST['originalurl'];
3.$alias=$_POST['alias'];
4.$count=0;

e are initially making count as 0 becomes this is being created for the first time.
Assigning orginalurl and alias to $url and $alias respectively.

Now we need to validate the URL as well as ALIAS.
Should Validate:
1. URL must be a URL and not just a TEXT
2. If alias field is blank then it must randomly create some characters.
3. If alias field has some value but its less than 3 characters then an error must be thrown.
4. Alias name shouldn’t contain any special characters.
4. If alias name is already being used by someone then again an error must be thrown.

So here is the code for that i will be using mootools so that i can display the result at the same page.

01.if(validate_url($url)==FALSE)
02.{
03.$result[] = 'Please enter only URL which start with http:// we wont allow you to tiny SHIT';
04.}
05.if($alias=='')
06.{
07.$alias=chr(rand(97,122)).chr(rand(97,122)).chr(rand(97,122));
08.}
09.if(strlen($alias)<3)
10.{
11.$result[] = 'Alias name must be greater than 3 chracters';
12.}
13.if(alpha_numeric($alias)==FALSE)
14.{
15.$result[] = 'No Special Characters must be used.';
16.}
17.if(alias_check($alias)==FALSE)
18.{
19.$result[] = 'Alias Name is already being used be someone, please specify another alias name';
20.}

In the above code we are using few functions (functin.php) like validate_url, alpha_numeric, alias_check and these functions are in function.php

01.unction alpha_numeric($alias)
02. {
03. return ( ! preg_match("/^([-a-z0-9])+$/i", $alias)) ? FALSE : TRUE;
04. }
05. function validate_url($url)
06. {
07. return (!preg_match("/http|ftp:\/\/(.*)\.(.*)/i", $url)) ? FALSE : TRUE;
08. }
09.function alias_check($alias)
10. {
11.include('config.php');
12.$sql="SELECT alias FROM url_tables WHERE alias='".$alias."'";
13.$result=mysql_query($sql);
14.$row=mysql_fetch_array($result);
15.if( mysql_num_rows($result) == 0 )
16.{
17. return(TRUE);
18.}
19.else{
20. return(FALSE);
21.}
22.
23. }

The $sql is used for checking the presence of alias name.

Now we completed the validation part. If everything goes well then we have to insert to our database.

Here is the code for that:

1.$query1 = mysql_query("INSERT INTO url_tables (alias,url,count) VALUES ('$alias','$url','$count')");

The mootools function that is being added on index.html is here:

1.<script src="mootools.js" type="text/javascript"><!--mce:0--></script>
2.<script type="text/javascript"><!--mce:1--></script>

Finally we completed 90% of our code. Its time for retrieving original URL from alias URL and also increment the count to show that the alias name was used.

We call this as original.php, in the page we grab the alias name check in out database and if found we pull the original URL else give an error showing that it is an invalid alias name.

01.$Not_Found = "reminder.html"; // The page to redirect to if no redirect link is found in the database.
02.$get_alias = $_SERVER['QUERY_STRING'];
03.$sql = mysql_query("SELECT url FROM url_tables WHERE alias='$get_alias'");
04. $site_arr = mysql_fetch_array($sql);
05. $site_redirect = $site_arr['url'];
06. if(!$site_arr){ header("Location: $Not_Found"); }
07. if($site_arr){
08. mysql_query("UPDATE url_tables SET ount = count + 1 WHERE alias='$get_alias'");
09. header("Location: $site_redirect");
10. }

$Not_Found is used to display a page if the alias name is invalid. And the remaining part is to query using Alias name as the ID and jump to the original URL. We also increment count = count + 1

Now making the magic of URL. Actually the above code works like this: http://gotiny.co.cc/original.php?example but we have to change it to http://gotiny.co.cc/example this is done by creating a .htaccess file
Here is the code:

RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ original.php?$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ original.php?$1
ErrorDocument 404 /errror404.htm

At last we completed a bit.ly kind of site.


Popularity: 10% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
Categories : PHP Tips,Webmaster Tips Tags : , , , ,

The 6-Figure List – Download With MRR

Posted by Sheriff 26 April, 2009 (1) Comment

Hi,

Here is another MRR Products i recently purchase and ofcourse which has giveaway rights.

Enjoy The Ebook an become a excellent List Builder.

This Ebook 6-Figure List is pretty well as i read and helping us to grow our list easily.

Download 6 Figure List Here

Post Your Comments Regards this product.

To Your Success

Sheriff

Popularity: 43% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading ... Loading ...
Categories : Email Marketing,Gift For Webmasters,Webmaster Tips Tags : , , , , ,

Web Hosting For Newbies – Free Tutorial!

Posted by Sheriff 25 April, 2009 (1) Comment

Hi Fellow Marketers!

This Free Report (Valued At $27) Details How To Choose A Webhost and Get Started Using Your Account

Inside you’ll discover things like…

Exactly what to look for in a webhost — miss these details and you might end up signing up for a bad webhosting company.

What is shared, reseller, VPS and dedicated hosting and their differences. You’ll find out which one you’ll need.

Working and using cPanel. This quick guide will short-cut your way around using cPanel.

Got your domain name, got your webhosting account? Now how do you link them together? Follow these step-by-step instructions.

How to get your website up and running. Where to get absolutely free FTP software (no 30 day trial), and upload your files to your web server — full screenshots provided.

Download Your Free Report For Web Hosting For Newbies Right Now…

Please refer friends to dowload this report!

To Your Success
Sheriff

Popularity: 41% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Categories : Gift For Webmasters,Webmaster Tips Tags : , , , , ,

Top Secrets of Surviving when your Web master Disappears

Posted by Sheriff 15 January, 2009 (1) Comment

Websites need to generate revenue to bear the heat of web space. If they fail to stack money, they will be soon out of business. They try extremely hard for the given purpose. They hire various resources to jazz up the content and appearance of their site. They use the latest tools of advertisement and also try funny back links and various manipulations to lure traffic. Just as they get floated on the web space through a dedicated or shared server, one person takes all the charge on his hand. This guy is called the webmaster.

With the advancement in technology today, webmaster tools are also available which can work at least partially without human interference. These help in making all the necessary changes on the site upfront as well as at the backstage. Loading and unloading graphics, changing text links, fighting spams and Trojans, looking for optimization tools and helping with possibly all that is even loosely connected to the proper functioning of the site.

What happens then if your webmaster disappears? Is there a way out? This guy multi tasks so how do you still look after each thing in his absence. Well! It is tough to cope up with the loss but it still possible. It’s just that your ROI will suffer because you will have to hire people under different sub-heads now.

First, there has to be a SEO guy or firm who can take care of your optimization techniques.( this guy is anyways there for quality sites) This person can make sure that the traffic is properly drawn by following latest white hat SEO trends. You will have to talk about putting the right pop-ups, the flash pages and flash splash pages on the site. A wrong one may put you away from Google’s arc.

You will have to hire a web developer who can draw up cream appearance for your sites. Perfect background images and correct color combination adds a lot to the magic of the site. You will have to tie with the hostgator to provide a compatible programming language that is also easy to follow. Perhaps the complex scripts are no more what you need in absence of your quality web master, so if you are on a dedicated server, change yourself to a shared server, its programming demands are lesser.

Look to buy the services of an affiliate marketer who understands what ads to place and where. There are customized ads that can be placed through a partner web site. Your site can also work as an affiliate link to a merchant’s website and earn through PPC or commission. You can even tie with Google Ad Sense for ad placement. In fact, it also helps you to acquire greater visibility. So we see that paying a nice ad placement guy is a small price for all the revenue that you can stack up on your site.

You should look to learn the trick of spam filter yourself. Blow the Trojan away through proper fire walling. While this again is technical stuff, you can probably learn this and execute it. After all, you have got to survive and there are only so many sub-heads for which you can pay.

Popularity: 67% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
Categories : Internet Business,Internet Marketing Updates,Webmaster Tips Tags : , , , ,

The Role of a Webmaster in Your Internet Business

Posted by Sheriff 14 January, 2009 (2) Comment

Internet has simply consumed us and very pleasantly at that. We are not complaining, simply counting its blessings. Internet is a big space where you can monetize. There are various ways in which you can choose to do so. The idea is to find a web master who can help you in doing this. You can call this man your web developer, administrator, planner all rolled into one.

In fact, efficient ones can also help you plan your website ROI’s. If your webmaster is a multi-tasker and finds it to be an impediment, he may also select to outsource a certain part of the work to some off shore unit. In such an event he still keeps the powers of supervision to himself.

We know how the site has its own dynamics. No site can remain stale and yet lure traffic in a long run. There are various reasons for it. First, customer preferences keep changing and what may be in today might look cliché the other day. Second, there might just be an important addition to the topic which needs to be put on quickly. For instance, what would a political site do without adding consistently new developments on president-elect Barack Obama?

Third, search engines are catching the manipulative tendencies of few “black hat” sites. This is why they are changing trends and each day there is an algorithmic or pattern related change. How do you plan to draw traffic without complying with the fresh structure? This is only possible if you make the necessary changes in your site.

For all this purpose, the webmaster is your one man army. He will make all the necessary changes, link uploads, add graphics, remove or augment flash pages, clear text links (in case your site has presently-unacceptable camouflaged text links) among other things.

It is the duty of a webmaster to be well-versed in coding. Presently, there are many programming languages and the server your website has acquired to be floated on the WWW might be more compatible to a particular programming language.

Hence, it becomes his duty to code and de-code various languages. PHP is the most eminent one and also the widest in use. Generally, top servers (dedicated and shared) have PHP. Other important ones are ASP, and CFM. Always make sure that your webmaster knows his way through these languages.

Graphics needs to be changed by the day. Each time a visitor clicks on your site, he expects something to change over there. Slowly, this point becomes its USP. For instance, master search engine Google operates with different graphic each time you look over the search box. Uploading logos, posters and various other graphics can really help.

Also, website maintenance falls within a webmaster’s ambit. This can include tracking SEO back links, optimization tool tracking, checking spam, checking for Trojans and quarantining them and looking for any false entry of black hat method. He also looks after the fire walling of server. (Though this is not within his duty)

Popularity: 59% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading ... Loading ...
Categories : Internet Business,Internet Marketing Updates,Webmaster Tips Tags : , , , , , ,

Google Webmaster Guidelines

Posted by Sheriff 11 January, 2009 (1) Comment

Google is the top search engine and though it has depreciated in terms of visitor-cornering after the yahoo-split, it is still the highest-ranked search engine. This is why you have to be in the good books of Google if you want your site to do well and generate revenue. Following Google’s webmaster guidelines becomes very important in this context.

Google lays great importance on neat text links. Moreover, in order to have a navigable site; Google clarifies that a site in operation must have one minimum static text link through which all the pages on the site can be reached. The first point is neat text links. In fact, often even the texts are camouflaged. The color of text gels with the background. This is a manipulative technique to run through the Google spiders. Such texts are generally unsolicited contents. Google takes great care to filter these out. So be in the know.

Google stresses on text links because often it cannot read images. Images generated through flash pages and flash splash pages are instantly filtered out by Google algorithms, no matter how good they are. So your web developer knows what to do about these.

Google uses bots or crawler or spider to retrieve information from a site. Images hinder such information. The search engine copies the web content on its index and uses it to siphon visitors for the site on a later day. Obviously, you have to be high up on the Google ranking ladder for this to happen. A Google spider simulator is software that will quickly let you know what part of your site is available to be trapped by Google. Make necessary changes and you will be right up there.

Also remember not to play games with Google through smart language operation. For instance, if you are using JavaScript, make sure that you are not hiding any index. Place the same text in the no script tag and JavaScript. Showing Google something and processing something else is a black hat method. It could still pass in the past but with sterner Google web master guidelines today, it is no more possible.

Site should also follow clear patterns of hierarchy. This implies that the sites should set their pages in terms of highest significance-lowest significance. You should also have a linear structure. For instance Wal-Mart- stainless steel accessories; shoe accessories; clothing accessories is the correct pyramid. Clothing accessories- shoe accessories; Wal-mart; stainless steel accessories is the wrong structure. It makes it confusing both for the search engine and the visitors.

Always offer a proper site map to the user to make his navigation easier. This way, they will be adequately guided through various links. This brings us to links, a vital strategy of web economizing. While you can look to purchase links for the purpose of advertising, it is unethical to buy links for the purpose of boosting search results. Google has made it mandatory for a website owner to pre-state what they are looking to do with the link.

Popularity: 56% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
Categories : Google,Webmaster Tips Tags : , , ,

How to Be a Video Webmaster and Make Money

Posted by Sheriff 10 January, 2009 (2) Comment

No site floats on the web space for charity. Well, this is a false statement. There are many non-profit seeking sites but at the same time a commercial site always looks to monetize. It does a lot in order to be able to do so. It hires SEO firms to be updated with Google algorithms and shift in SEO trends.

It hires perfectly trained webmasters who can be their developer, planners and executers. These web masters produce the layout of the site, and keep it dynamic with a change here and there. These are also the people who tackle spam, Trojan, fire wall worries of the site. Overall, these are the people in charge of a site.

How does a webmaster championed in various programming languages and all kinds of flash pages and link loading know the art of core revenue generation. Well! That’s easy as well these days. You can make money in a million ways on internet. The one that’s catching big is generating revenue through videos.

Just copy-paste many kind of videos on your site; these can be about anything. Statistically it is seen that erotic videos, celebrity videos, fun videos and adrenalin pumping videos attract a lot of traffic. So you can simply look to upload a host of such videos on your site? It will lead to traffic in a short while. Now, these links are not yours and unless you have an affiliate tie-up, you can hardly put a big PPC on it. What you can do is place ads all along the site.

If your videos are good then they will retain traffic. Human beings are a curious lot. If they like something, they tend to think that the adjoining thing will also be likeable. This traffic will then click on such ads. This is where you can generate money again.

You can look to connect these ads through many ways. It can be a tie-up with some merchant site and you can act as an affiliate, this means each time they click on the ad, they will be directed to the merchant site. The merchants’ then pay you commission for your effort. Money can also be paid through fixed monthly salary.

You can also tie up with partner websites and make money by using their customized ads. The overall idea is to generate revenue and the video links and posts can bean ideal way to further lure the traffic. coming back to the links, its ideal to take them from various sources so that even the very savvy visitor will see at least a couple of fresh videos on your site. You can also use your own video club to roll in few very rare and impeccable videos on net.

Remember, the webmaster is a skilled person. He knows how to tackle the changing trends of a search engine and he also knows what to do with diverse programming languages. He would surely know how to generate revenue through videos. Idea is to give him all the power he needs to make the videos more charming, we mean the background images on the site that compliments the videos.

Popularity: 33% [?]

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Categories : Webmaster Tips Tags : , , , , ,


SEO Powered by Platinum SEO from Techblissonline