Directory
Web Design
Blog Details for "webmaster central"
webmaster centralwebmaster centralUltimate place for Webmaster resources,guides,overview,Adsense in blogs,A complete guidebook,How to bann a publisher,more on yahoo publisher network,
Articles:
1, 2
Articles
How to create flashy effects for webpages
2010-09-03 23:59:00 When you entered this page, you probably noticed that the screen dissolved from the previous one to the actual page. Nothing was wrong with your computer, it was the work of the new Flashy Introduction META tag. This tag, unfortunately, is only compatible with IE4+, but provides a great effect (and allows normal viewing in Netscape). The META tag is very easy to insert, once you know how to use it. This is the script: <META http-equiv="Page-Enter" content="revealTrans(Duration=#,Transitio n=#)"> You will need to change two parts of this code. First, you will need to change the blue # after Duration to the number of seconds that you want the Flashy Introduction to take. Then, you will need to change the blue # after Transition to the number of the type of transition that you want the Flashy Intro to do. A list of what each number in Transition does is provided below. Once you make those two, small changes, insert the tag in the HEAD of your page. The Transi...
How to open a new console when someone enters or leaves your site
2010-09-03 23:58:00 You've probably seen this on some web sites. When you enter the site, but more frequently when you leave the site, a console pops up with some additional info or ads, or a poll etc. This can be done using Java script. To Open A Console When Someone Enters Your Site : <script language="JavaScript"><!--window.op en('http://www.freewebmastertips.com','HB ','toolbar=1, location=1,status=1,menubar=1, scrollbars=1,resizable=1, width=500,height=300');// --></script> Just place the above code within the BODY tags. To Open A Console When Someone Leaves Your Site: Place the following attribute in the <body> tag: onunload="leave()" For example: <body bgcolor="#000000" onunload="leave()"> Place the following code between the "</head>" and <body> tag. <script language="JavaScript"><!--var exit=true;function leave(){if (exit)open("http://www.freewebmastertips. com",'HBexit','toolbar=1,location=1, status=1,menubar=1,scrollbars=...
JavaScript Tutorial.
2010-08-03 14:37:00 JavaScript is a simple programming language built into Netscape 2.0 and greater. It is integrated with and embedded in HTML. It allows greater control of web page behavior than does HTML alone. Since the JavaScript interpreter is part of Netscape, it is platform-independent: JavaScript incorporated into HTML runs on Windows, Macintosh, and other Netscape-supported systems. Lets start comprehensive JavaScript Tutorial and enjoy. More About: Javascript
Web Host - Host Yourself!
2009-06-12 20:37:00 There are very few reasons to host yourself these days. Web servers are faster than ever, prices are down, and the majority of internet sites use such a small portion of a web server's resources that a large number of web sites can be hosted by a single server without any negative side effects. However, if you are thinking about hosting yourself, you should first see if you meet any/all of the following requirements:You are technologically savvy individual.Understand the basic issues in securing a server.You have access to a broadband internet connection for the server.Have a large amount of time to allocate for this project.Excellent problem solving skills. If you believe this pretty much describes you, then hosting your own server may be a reasonable solution. However, if you do not meet these requirements, we suggest that you skim through this information and continue on with Web Host guide. Chances are setting up your own server would only be an unnecessary headache. Server...
Web Host - Research
2009-06-12 20:33:00 Many variables should be considered when selecting a web host. Does the host provide the right features, databases, price, etc? The quality of a web host can make the difference between a lifetime web visitor for your web site and an annoyed first timer who will never return.If the web host has a slow connection to the internet or a poor uptime percentage, then a web surfer would experience a boringly long delay waiting for the pages to load. In the worst case, they may simply get an Error 404 page not found! Nevertheless, there are a few steps that can be taken to find that great host and to help avoid web hosting lemons. Quantity Research Before you even begin to consider locking in and purchasing a web host, be sure to visit a number of random web hosts. This will allow you to get a feel for pricing standards and understand what features go with what price. Be sure to pay attention to the following: Price per GB of bandwidthPrice per GB of storageNumber of databasesNumbe... More About: Host
What is SQL?
2009-06-08 08:33:00 SQL stands for Structured Query Language SQL allows you to access a database SQL is an ANSI standard computer language SQL can execute queries against a database SQL can retrieve data from a database SQL can insert new records in a database SQL can delete records from a database SQL can update records in a database SQL is easy to learn ...
Create a Database
2009-06-08 08:30:00 The CREATE DATABASE statement is used to create a database in MySQL. Syntax CREATE DATABASE database_name To get PHP to execute the statement above we must use the mysql_query() function. This function is used to send a query or command to a MySQL connection. Example In the following example we create a database called "my_db": $con = mysql_connect("localhost","peter","abc123 ");if (!$con) { die('Could not connect: ' . mysql_error()); } if (mysql_query("CREATE DATABASE my_db",$con)) { echo "Database created"; }else { echo "Error creating database: " . mysql_error(); } mysql_close($con);?> Create a Table The CREATE TABLE statement is used to create a database table in MySQL. Syntax CREATE TABLE table_name(column_name1 data_type,column_name2 data_type,column_name3 data_type,.......) We ...
What is MySQL
2009-06-08 08:28:00 MySQL is a database. A database defines a structure for storing information. In a database, there are tables. Just like HTML tables, database tables contain rows, columns, and cells. Databases are useful when storing information categorically. A company may have a database with the following tables: "Employees", "Products", "Customers" and "Orders". Database Tables A database most often contains one or more tables. Each table has a name ... More About: Mysql
Essential Ingredients of Every Linux Hosting Plan
2009-06-07 10:16:00 All of us are quite familiar with the website. A website normally comprises of domain name, web space and web pages. When you want to launch a website, first of all you will choose the domain name. After the selection of domain name the next step is to find best web hosting server on which you will be able to upload your files. Following are the main ingredients of every Linux hosting plan: Control Panel The most important and the major feature of any website has always been the control panel. Control panel empowers you with freedom to administrate your website. As per the agreed plan, you will be given access to control panel to manage your website and make necessary amendments. Email ID?s The POP3 email ids is one of the important ingredients of Linux hosting and you will be provided with plenty of email ids. The number of email ids depends on the size of your website. FAT Accounts FAT accounts brings you freedom, power and control on your website and you c... More About: Hosting , Ingredients
Web Hosting Reviews
2009-06-07 10:15:00 Why Our Reviews Are Different? There are hundreds of web hosting reviews websites out there; honest hosting reviews, user hosting reviews, best website hosting reviews and so on. Every one of them claims to have found the best top 5 web hosts with great uptime and lots of positive testimonials. But none of them reviews the web hosts based on the hosting packages! Different websites have different hosting needs; a web host can have a good hosting plan for hosting beginners while another web host can have the best plan for someone that needs dedicated hosting. We review the web hosting plans based on the personal hosting needs of each website.Different customers have different needs, so why recommend the same web hosting plan? Recommended Hosting Packages and Reviews BEGINNER HostingBest-suited for small to medium websites, blogs, online family pictures, c... More About: Web Hosting
Web Host - Ecommerce
2009-06-06 17:18:00 If you are thinking of starting an ecommerce web site, stepping through this Web Host Guide is critical. If you have read through this guide, start to finish, and follow the advice we have offered, you will be well on your way to choosing a quality host. Ecommerce is a much different business then the world has ever known. It is fast paced and those who cannot keep up are left behind. There are many reasons ecommerce sites fail, but hopefully the information here will help you avoid those issues that are under your control.Free Hosting? Never! If you are running a web site on a free host you had better rethink your business plan. If you do not have the 10 or so dollars a month to pay for a reliable web host, then it would be much better to wait and save up the money. Launching your business on such an unreliable service as "free hosting" would discredit your business and irritate your visitors. Some pitfalls of freehosting: Pop ups - Many "free" hosts will contain pop up advertis...
Web Host - Backup
2009-06-06 17:14:00 Your server's hard drive crashed. A hacker compromised your account and deleted all your files. Your web host disappeared with your money and your data.These catastrophic events happen without warning, and without discretion. If you are not prepared for the worst, your hard work might be lost forever. That is why it is of the utmost importance that you keep regular backups of your data. Do not worry, there are a variety of backup options to pick and choose from. Backup Schedules Depending on the type of site that you run, you will need to choose a backup option that fits your needs. If you run a forum, news site, or any other site with current information you will want a daily backup, at the very least. However, if you operate a simple personal page, that has not changed in over a year, keeping a backup of your most recent changes will suffice. A good rule of thumb for the casual webmaster is to do a complete backup every week or so. Manual Backups The simplest way t... More About: Host
Web Host - Uptime
2009-06-06 17:13:00 Uptime refers to how often a site is available or responsive to web requests. The internet never sleeps, which means your web site needs to be up every second of every hour of every... you get the idea. A visitor could be arriving at your site's home page at any time of the day, so a web host with a high uptime percentage is critical.Advertised Uptime Nearly all web hosts will advertise and guarantee a "99.9%" or higher uptime percentage. However, these guarantees are about as trustworthy as a used car salesman, not very! If a host has a history of a great uptime performance they will post a history of their uptime performance, monitored by a 3rd party, such as Alertra or InternetSeer. Additionally, web hosts that operates on a redundant network (more than one data line to the internet) will be more reliable than a web host that is running only a single data line. Monitor Server Uptime If you have already signed up for a web host you can use a 3rd party to constantly m... More About: Host
Web Host - Statistics
2009-06-06 17:10:00 Knowing the who, what, where, and how about your visitors is extremely useful for getting an idea of your user base. More specifically:Who - By using someone's IP address it is possible to know where a web surfer is geographically located.What - What pages did the surfer view on your web site?Where - Was the surfer referred from another site, search engine? Do they have your site bookmarked?How - How long was the surfer on your site? All this information and more can be provided to you without troubling your visitor, i.e. no cookies need to be placed onto the visitor's computer to gather this data. With a decent statistics program you will be able to find out how many people have bookmarked your site, how long the average visit is, what are your site's most popular pages. Stastistic Terminology There is not much use to a detailed traffic analysis report if the terms mentioned are not understood by the reader. Below we have a glossary of web statistic vocabulary to make your... More About: Statistics , Host
Web Host - Email
2009-06-06 17:08:00 Email is the lifeline for communication between a web site's visitors and the web site's owner(s). Finding an appropriate set of email features on a given host plan should not be a problem, as most of the features we will discuss are an industry standard. Nevertheless, if email will be an important factor for your web site you should still keep your eye on email features.Email Aliases An email alias is simply the name associated with an email address. For example Bob works at www.example.com and his email alias is bob, so his email address is bob@example.com. Personal web site owners may get by with only a single email alias, while large corporations may require hundreds to thousands of email aliases for all of its employees. Check to see that the plan offers a sufficient quantity of aliases. Email Redirects When someone is fired from a company or multiple sectors of a web site are condensed down into one, it would be nice to combine the old email addresses into one as we... More About: Email , Host
UNIX versus Windows Hosting
2009-06-03 18:18:00 When browsing through the offerings of various web hosting companies you are sure to notice that some offer UNIX hosting and others offer Windows . Some hosts even offer a choice of the two operating systems. What are the differences and which one is better? First of all, when choosing a host, it doesn?t matter what kind of operating system you develop your web site on or what you use on your own computer. Web sites hosted on both UNIX and Windows servers are universally accessible because the data they serve is identical. The difference lies solely in the software used to serve that data. In terms of reliability UNIX systems have a slight advantage. They are known to extremely stable and able to run for years without rebooting. Windows is also very reliable ? slightly less so than UNIX but still able to handle the demands of modern web sites. The majority of web hosts use various flavours of UNIX like Linux and FreeBSD. These operating systems are free and reduce the costs of a host... More About: Hosting , Unix , Versus
Multiple Domain Web Hosting
2009-06-03 18:17:00 Thanks to the low cost of domain names and hosting fees it is possible to own several websites without breaking the bank. There are several ways to manage multiple domains so it is important to know what your options are and the advantages and disadvantages of each method. The most basic choice when administering multiple domains is whether or not to do so with the same host. Most hosts offer packages which can be set up to allow several sites on one account, or allow individual sites to be operated under separate accounts. You may have an existing website and are happy with the services your host provides. If you decide to start a new website using the same host, you will have the reassurance of dealing with a company you are familiar with and trust. You may also get a discount for each additional account you open with the same host. On the other hand, using a new host for a second (or third or fourth) website can allow you to compare the quality of hosting offered by different com... More About: Hosting , Web Hosting , Domain
From Registering A Domain To Getting It Online
2009-06-03 18:15:00 Before getting a web site on line you need to have a domain name. These are the familiar web addresses such as mywebsite.com that most browsers use to find a particular web site. Domain names, in fact, are pointers to a particular IP address and we use them because they are easier to remember than a series of numbers. All websites have an IP address in the form 123.456.78.9. The domain name system translates these numbers into names such as mywebsite.com. All domain names are registered in a central registry maintained by InterNIC, a subsidiary of ICANN ? the organization which certifies domain name registrars. Domain names are filtered through Domain Name Servers (DNS) which link IP addresses with domain names. Each web site usually has a primary and a secondary DNS ? duplicates that increase reliability. The first step in registering a domain name is to choose it. The name can be almost anything you want, but to be most effective it should reflect the nature of your website. If yo... More About: Online
Bandwidth
2009-05-31 09:24:00 Bandwidth is a term that has several different meanings depending on the context. When talking about bandwidth in terms of Web Hosting it refers to the amount of data that transfers into and out of your web hosting account. Incoming data can include requests for web pages, email, FTP requests, and FTP uploads, while outgoing data includes file transfers, web pages, and email. Each hosting account is allocated a certain amount of bandwidth per month. Common figures for bandwidth range from 3 GB for small personal sites up to 200 GB for large business systems. How much bandwidth do you need? This depends on the amount of traffic your website receives as well as the content. Web pages made up of text and a few pictures are very small in size but if you get thousands of visitors each day you may need a lot of bandwidth. On the other hand website content consisting of downloadable files such as software, music or video is much larger in size, so even if your traffic is fairly low you may... More About: Bandwidth
Web Hosting and Databases
2009-05-31 09:21:00 Most web hosting packages include one or more databases. What can you use them for? How will they help your website? Read on for the answers to these questions. A database stores data, but more importantly, allows that data can easily be accessed. Data can be product information, customer names and addresses, sales records, or even the information that appears on web pages. Using a database to retrieve that information can allow you to better serve your visitors and provide them with a more interactive experience. The most common use of databases in an Internet environment is to serve information dynamically as it is requested. In a large eCommerce site, for example, the actual product information is maintained in a database so that updating the site is a simple matter of changing the data. Without this system, website managers would have to create static pages for each product. When dealing with hundreds or thousands of products, this task would be almost impossible to manage in a... More About: Hosting , Web Hosting , Databases
Web Hosting Providers
2009-05-31 09:10:00 To make your web site visible to the world, you'll have to store it on a web server. Hosting your own Web site Hosting your web site on your own server is always an option. Here are some points to consider: Hardware Expenses To run a "real" web site, you will have to buy some powerful server hardware. Don't expect that a low cost PC will do the job. You will also need a permanent (24 hours a day ) high-speed connection. Software Expenses Remember that server-licenses often are higher than client-licenses. Also note that server-licenses might have limits on number of users. Labor Expenses Don't expect low labor expenses. You have to install your own hardware and software. You also have to deal with bugs and viruses, and keep your server constantly running in an environment where "everything could happen". Using an Internet Service Provider Renting a server from an Internet Service Provider (ISP) is a common option. Most small companies store their web site on a serv... More About: Web Hosting
Web Hosting Intro
2009-05-31 09:06:00 How does the Internet work? How can I have my own Web Site? What is a Web Host? What is an Internet Service Provider? What is the World Wide Web? The Web is a network of computers all over the world.All the computers in the Web can communicate with each other.All the computers use a communication protocol called HTTP. How does the WWW work? Web information is stored in documents called web pages. Web pages are files stored on computers called web servers.Computers reading the web pages are called web clients.Web clients view the pages with a program called a web browser.Popular browsers are Internet Explorer and Firefox. How does a Browser Fetch a Web Page? A browser fetches a page from a web server by a request.A request is a standard HTTP request containing a page address.An address may look like this: http://www.example.com/default.htm. How does a Browser Display a Web Page? All web pages contain instructions for display.The browser displays the page by reading these inst... More About: Hosting , Web Hosting
Introduction to Web Hosting
2009-05-30 21:47:00 Just about anybody can create a presence on the Internet. Building a web site can be as simple as using a word processor, but once you have the site you need a way to publish it on the World Wide Web. This is where web-hosting companies come in. A web host rents you disk space and provides all the services necessary for others to see your web site on the Internet. Barring technical problems, a web host operates 24 hours a day, 7 days a week so that anybody in the world can access your web site at any time. There are literally thousands of web hosts to choose from so choosing an appropriate host can be a difficult task. The prices range from free to hundreds of dollars a year. Hosting companies can offer a multitude of services that can be confusing to a newcomer. This series of articles will help you to sort out all the information available and give you the confidence to make the proper decision about choosing a web host. Free or Paid? There are plenty of hosting companies that pr... More About: Web Hosting , Introduction
We have shifted
2007-03-30 19:56:00 Glad to anounce that we have shifted to http://webtalks.blogspot.com More About: Shift
Adsense Alternatves
2007-02-20 20:55:01 People are often searching for Adsense alternatives when they either are banned from ADsenseor they want to increase their incomes.Yahoo Publishers Network::The Ads displayed are similar to what of Google.The only difference is Ads by Yahoo instead of Google.But you need to have a US Citizen card.This is only its beta version.The release date for full version isn't confirmed yet.But everyone can advertise in Yahoo.Apply hereAdbrite::I chose it to earn more income[see bottom of page].It has some advantages like if you are using another ad serving network,you can merge it with Adbrite ads until you get a proper advertiser.Unlike Google Adsense,your site's keywords & Description will be added in ADbrite Directory.If an advertiser finds your site relevant for displaying his ads he can place customised ad with your prior permission.AD formats are fully customisable & you can even earn by reffering others to join ADbrite network like Adsense refferals.For applying see right side. Ap... More About: Sense , Ense , Sens , Alter
A free website or a blog
2007-02-14 08:50:02 I CHOSE BLOGGER.why?simple reasons...STORAGE:you have a limit while you are using a free web hosting services like 50webs.com but you can post unlimited topcs in blogger.BANDWIDTH:It has been observed that free hosting service providers often give a poor bandwidth to a subdomain.Wheras Blog ger has a very high Bandwidth capacity.This therefore allows you to have unlimited visitors on your blog anytime!TEMPLATES:Many people are too lazy about creating their own templates.So blogger has also a solution to this.Unlike the old blogger,the new blogger is offering many good XML templates.All u need to do is to choose one of them & start posting.Don't worry you can also personalise your template[Like I have done] if u know a bit of XML & CSS.If u don't u can visit w3schools.org.You can even have some good one just by following these search terms in any search engine(without quotes)'free blogger templates'.GOOD SEARCH ENGINE LISTINGS:Blogger is in affiliation with Google.So definitel... More About: Website , Free , Site , Webs
Adsense on blog resumed
2007-02-10 20:47:01 Due to some technical reasons,Adsense ads on this blog were disturbed.But now they are back.A person named Dhritiman Dasgupta tried to do so.But they weren't affected as the policies weren't violated yet.Note**Adsense for search will not work for a while from now More About: Sense , Blog , Resume , Ense
Adsense for experienced
2007-02-02 02:40:05 HOW TO INCREASE UR RESULTS?? Link you?re your site to high traffic sites with links exchange programsplace ads near images, on the of the page and always place a referral on your page.blend the colors of the ads that suite the page.BANNED USER? Were you banned from adsense due to ? Invalid clicks? False activity? Violating TOS or policies?If yes then , you can?t be a publisher now.HOW TO PREVENT BANFirst of all, you use a smart website tracker (like google analytics), watch the reports of your website,if u find anything suspicious, send a mail to adsense-support@google.com they will guide you.? Do not use any automated clicking systems? Do not encourage users to click on your ads? Do not place image ads near your website?s images? Last????.Do not dare to click on your adsWHAT TO DO AFTER A BANFollow the mail they mailed you, you can ask them to reactivate only if you haven?t violated Google TOS.(in max. cases,the account is not reactivated)Or search for affiliate programs like te... More About: Sense , Adsense , Experience , Ense , Sens
ADsense Channels
2007-02-02 02:40:05 Channels serve as a basis for reports.They are definitely needed to produce meaningful reports. Google distinguishes between two different kinds of channels. You can configure and access them on your AdSense user area.The first kind is called URL Channels.URL channels are used to track the efficiency of one ore more pages of your website. The amount of pages analyzed depends on the given URL. Only a URL that leads to a single page will result in a report that relates to exactly one page. A partial URL will always result in a report about all pages available below this URL. As a consequence you can get a report about a complete website by specifying its top level domain.Using URL channels the smallest reportable element is a single page of your website ? not very helpful if you want to optimize your ads.URL channels are useful if you want to get an overview about your whole website's success or if you want to compare the results of single pages.There is information how to create URL... More About: Adsense , Channels , Ense , Channel
Some more SEO
More articles from this author:2007-02-02 02:40:05 good looking and user friendly website is an extremely important asset to your success on the Internet. However without traffic, even a well designed site will not produce results for you. The best websites are those that are both attractive and easy to use by your human users, and at the same time, convenient for the search engine robots that are trying to find and collect data from your site.Oftentimes a site that may look good to your eye has some design flaws that impair its search engine friendliness. Here are a few things to look for when designing new sites or optimizing an existing site.1. Where does your first line of text begin? You may think, ?that?s easy, the first line of text is right at the top?? If you view your web page using Notepad or the html view of popular editors you may be surprised to find that the first line of your actual searchable text may be pushed down, 100 lines or more, by long strings of java script and by the html code that defines your tables.The ... More About: More , Some 1, 2 |



