• Source Code – Eliminating HTML Margins

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    Since the inception of the very first HTML document, margins existed that surrounded the document, like in the case with this document.

    The margins are there to act as a cushion between the edges of the browser and the contents of the page, so it’s easier to read the content.

    As good as margins are, wouldn’t it be nice to be able to eliminate them in some cases, where the design of the page calls for their termination? While most webmasters think it is not possible to “flush out” the default margins of a HTML document, it actually is, although only possible in IE 3+, and NS 4+. In this tutorial, I’ll show you how.

    Eliminating The Document Margin In IE 3+

    To get rid of the document margin in IE 3 and above, so content presses right against the edges of the browser, use the IE exclusive “leftmargin” and “topmargin” attributes:

    <body leftmargin=”0″ topmargin=”0″>

    It’s as simple as that!

    Eliminating The Document Margin In NS 4+

    To get rid of the document margin in NS 4 and above, use the NS 4 exclusive “marginwidth” and “marginheight” attributes instead:

    <body marginwidth=”0″ marginheight=”0″>

    Putting It All Together.

    By putting the two techniques together, we can create a document that flushes out its’ margins in both IE 3+ and NS 4+:

    <body leftmargin=”0″ topmargin=”0″ marginwidth=”0″ marginheight=”0″>

    Try out the above coding on your page, and you’ll see what I mean.

    Article written by Lee

  • Traffic Filtering – Country Specific Redirects

    Date: 2011.02.21 | Category: Traffic | Response: 0

    To some, actually marketing to foreign surfers is a waste of time rather than a business practice. Unfortunately, they are missing out on additional revenue. We are already beginning to see some of the major sponsors in the adult industry embracing these foreign markets and, not just by utilizing dialers.

    However, filtering your traffic base is often the hardest part of this money making equation. That is where the following piece of PHP coding can come in handy.

    PHP FILTERING CODE

    <?
    $user_lan = $HTTP_ACCEPT_LANGUAGE;

    if($user_lan==’de’) {
    ## German
    $redir_url = “http://www.germanlanguagepageurl.com”;

    } elseif($user_lan==’fr’) {
    ## French
    $redir_url = “http://www.frenchlanguagepageurl.com”;

    } elseif($user_lan==’it’) {
    ## Italian
    $redir_url = “http://www.italianlanguagepageurl.com”;

    } elseif($user_lan==’es’) {
    ## Spain
    $redir_url = “http://www.spanishlanguagepageurl.com”;

    ## US traffic or Rest of world not defined above
    } else {
    $redir_url = “http://www.yourmainpageurl.com”;

    }

    header(“Location: $redir_url”);
    exit;

    ?>

    So, we know that the above piece of coding can redirect surfers based on their country of origin however, in order for you to maximize this to its full potential you will need to know the country specific codes (Also called ISO 639 codes) for each of the main browser languages. Some of these are as follows.

    da | Danish
    de | German
    en | English
    es | Spanish
    fi | Finnish
    fr | French
    it | Italian
    jp | Japanese

    The problem you now have is finding where to send your filtered country specific surfers to. Of course, there is always the dialer option however, this is not going to be as lucrative to your wallet as what most people will have you believe.

    In fact, I very rarely use a dialer on my foreign traffic instead, I tend to send them to a language specific tour page from one of the big sponsors and, if they do not sign up to that sponsors site, this is the point where I throw a dialer at them and, if the dialer still doesn’t make any money off the surfer I then recycle the surfer for a fresh one through a toplist or banner exchange heavy page.

    In doing this I find it is often more productive than ‘regular’ English speaking traffic as, if you give the surfer something they are looking for, they will be more inclined to buy.

    Hopefully this article has given you some insight into filtering and using your foreign traffic as oppose to just sending them off to a dialer program.

    Article written by Lee

  • Foreign Search Engines

    Date: 2011.02.22 | Category: Promotion | Response: 0

    ‘Suchmaschine’ | ‘Moteurs de Recherche’ | ‘Motores de Busqueda’ ? Or, to you and I ‘Search Engines’.

    Well what if I told you there was a huge chunk of the market (again I know) that your missing out on because, frankly, you haven’t attempted to get into it?

    What is this wondrous market? Simple.. Foreign search engines.

    I would say that AT least 80% of my traffic comes from the search engines, Google, AltaVista, etc, etc however a large portion of this se traffic is from countries whose language even some of my translators don’t know.

    So, how do you get the foreign search engine traffic? again that’s simple, there are several ways to get it, you can:

    1) Submit to your favorite search engine and wait, and wait, and wait… or 2) You can submit to your favorite search engine then, instead of leaving the page, go to the foreign equivalent of that same search engine!

    Guess what, if you submit to Google in English then go to google.de the submit form asks you exactly the same information as your submission on the English form would do…so, ya don’t even have to speak German to submit to google.de, isn’t that handy?

    In my previous article a few weeks ago I mentioned what countries were top of the ranks for surfers in Europe, well, this week I want to run some figures past you again about which search engines ‘seem’ to be sending a decent amount of foreign traffic.

    So here goes, we have the top 6 search engine referrals for December 2001:

    http://www.crawler.de/

    http://www.lycos.de/

    http://www.infoseek.com/Home?pg=Home.html&sv=ES

    http://search.yahoo.co.jp

    http://www.excite.co.uk/

    http://www.infoseek.com/Home?pg=Home.html&sv=FR

    As you can see infoseek (which has an English version) sends me lots of foreign traffic although, in reality, this is only for English pages, don’t ask me why but I guess the Spanish and French surfers love surfing for porn in English..

    On a separate note, for those of you who are either to stubborn, lazy or, stupid to try submitting to the foreign search engines we will shortly be releasing a foreign search engine submission chart on European Webmasters which will tell you step by step what to put in each of the boxes on the submission form, so even you have no excuse!

    Of course, the foreign traffic is going to mean you will need to pay more attention to your sites, perhaps offering these surfers a site in their language to sign up to or, before sending them off to a dialer, trade these foreign surfers off for some ‘English speaking ones via the use of a toplist. Admittedly, I haven’t found sending them to a toplist productive myself however, you might get different results to me.

    Basically, if you start to get the traffic, hell, the chances are your getting foreign traffic now and don’t even know about it… USE IT!

    If you want to ask questions specific to the foreign market that’s what our forums on EW are there for, we would gladly spend all day everyday answering your foreign traffic questions however, as yet, very few US based webmasters are taking the initiative to investigate further this GREAT source of revenue so, I guess ill just have to go back to my foreign search engines and get a bigger chunk of the ever increasing foreign porn surfer for myself.

    Article written by Lee

  • European Surfers – Porn High On The List!

    Date: 2011.02.22 | Category: General | Response: 0

    Adult web sites were visited by 3.8 million home Internet users in the UK in June 2001, according to Internet monitoring company Net Value. This accounts for more than a quarter of the entire UK home Internet population.

    UK visitors to adult websites spent more than 45 minutes on these sites each in June. Adult sites make up 41.2 per cent of all the sites visited in the UK with a significant audience. Students (23.2 per cent), manual workers (15 per cent), and professionals (12.8 per cent) are the largest groups of UK visitors to adult sites.

    However Germany has the largest audience for online porn in Europe with more than 5.3 million Germans visiting an adult site in June. They also spent more time on these type of sites than any other nationality – each German visitor spent almost an hour on adult sites in June. Net Value data also showed that more than half (52.3 per cent) the websites visited in June by a significant number of German users were of an adult orientated nature.

    Spain has the greatest proportion of visitors to pornographic sites – 40 per cent of Spanish home Internet users visiting a pornography site in June 2001.

    “Pornography has become a lucrative online business, with many companies now recognizing it as a valuable additional revenue stream,” Net Value’s Alki Manias said. “And this would seem to be a stable business area – the popularity of online pornography continues unchecked.”

    Adult sites are also popular amongst the earliest adopters of the Internet. People who first got online at home before 1997 account for 18.5 per cent of visitors to adult sites, though they only make up 14.1 per cent of the whole UK online population.

    In the UK, Lastminute.com has just introduced an auction for adult toys and aids, whilst in Germany, Freenet.de and T-Online are also moving into the adult business.

    The following charts detail various demographics relating to European surfers usage of adult sites:

    Visitors To Adult Sites In Europe

    Time Spent On Adult Sites By European Surfers

    Number of adult websites visited, June 2001

    Number of adult websites visited Total number of Websites visited* % of websites which have adult content
    Germany 4,140 7,909 52.3
    Norway 3,847 7,756 49.6
    Denmark 3,675 7,661 48.0
    Italy 3,131 6,579 47.6
    Sweden 2,419 5,231 46.2
    Spain 3,069 7,019 43.7
    UK 3,879 9,411 41.2
    France 4,348 11,845 36.7

    * Sites with a significant reach

    UK visitors to adult websites by occupation, June 2001
    Occupations Of Porn Surfers In The United Kingdom

    As you can now see, we, as adult webmasters, have a considerable chunk of the online adult industry sitting in our laps and, we should concentrate on tapping into this market as more and more American companies are realizing the importance of these figures we will inevitably reach a stage where the European market will be passed across to our US counterparts.

  • Converting German Adult Traffic – The Niche Paysites That Work

    Date: 2011.02.21 | Category: Traffic | Response: 0

    With the rapid development of US companies and webmasters looking to attract a larger percentage of international surfers and, wanting to make money off these surfers I thought it would be an idea to share the most prevalent niches for each of the international markets country specific surfers. In this first article we will take a look at the niches which convert best on German oriented surfer traffic.

    German Traffic – Dispelling The Myths.

    First and foremost I think it would be a good idea to let you know that, strangely enough, not all German surfers are looking for kinky, in your face sex, in fact, they pretty much have the same tendencies towards their online porn as US based surfers do, with that in mind, lets take a look at some of the niches that do convert well on German traffic.

    German Traffic – The Niches.

    As with any type of surfer the best way of getting them to convert is to start targeting them from the second they hit your site using Full Page Ads, localized text links and, consoles, over the last 3 (three) months we found that the niches which converted best on German porn surfers were as follows.

    Amateur.

    The German adult surfers we sent to several amateur sites, including live web-cam sites and paysites converted exceptionally well, it would certainly seem from the last three months of stats that German porn surfers like the ‘amateur’ porn angle when it comes to satisfying themselves online.

    Teen.

    As with the US adult surfer, it would appear that the teen niche is truly a global requisite in fact, the teen niche was one of our best converting niches across the globe when we analyzed our international traffic conversion ratios.

    Gay.

    To our surprise the little German traffic we did send to localized German gay sites converted at less than 1:75, bearing in mind that the best converting niche for us was Teen and, that the specific site we sent the teen traffic to converted overall at around 1:138 we will be targeting a lot more German gay traffic in the future.

    Fetish.

    No mystery here, when we started our filtering process we ensured that the various fetish niches were high on our filtering list, after all, everyone seems to know that German porn surfers are looking for the hard to find hardcore scene and, the general fetish niche seemed to work wonderfully.

    Ebony.

    The ebony niche was a vary profitable one for the traffic we filtered to it, in summary, my personal feelings are that it converted so well because ebony men and women in Germany are very few and far between, again the results for this niche would seem to back-up the fact that giving Germans access to something that might be ‘taboo’ in their country converts their traffic well.

    Other Niches.

    In addition to the above niches which converted above and beyond the others we used we did get a few sales to some more micro-niched paysites for example, BBW, Asian, Cumshot and General Hardcore sites had around 3-5 sales per site, per pay period. Given that we did not target this type of traffic as effectively as we could have done and, that the traffic was from TGP’s and Geo Targeted Traffic Brokers we were happy with the results we saw.

    German Adult Traffic – The Results.

    It would seem, given our results from the 3 month test we ran on our traffic that the top converting niches for German adult surfers are the Amateur, Teen and Gay niches. Although, the rest of the niches we filtered out our traffic to did not convert as we would have hoped we still saw a good rate of sales month on month from the previous pay period.

    When all is said and done, as long as you have German porn surfers on your sites you would be wise to start spreading and filtering this traffic to some niches that, perhaps you wouldn’t have ordinarily targeted after all, a sale is more money in your pocket, whether you know the niche or not.

    Article written by Le

  • Domain Name Renewals – The Basics

    Date: 2011.02.22 | Category: Domain Names | Response: 0

    As an adult webmaster there is one thing that we all own which we build our businesses on, a domain name and, with this comes the responsibility to ensure that as long as we are running our business from any given domain that we ensure they are constantly under our control this is where domain name renewsl come into play.

    Domain Name Registration Periods.

    Almost all reputable domain name registrars will allow you to purchase a domain for anywhere between one and ten year periods. Many webmasters however only choose to register their domains for one year at a time and this, is where many webmaster can run into problems with their domains. More often than not webmasters will either forget to renew their domain names completely or, are not aware that they are even coming up for renewal. For this reason it is usually best to ensure that you register your domains for a minimum period of two years, this gives you a good time frame to start using the domain as well as ensuring you have enough funds available by the time the domain name comes due for renewal.

    How To Stay On Top Of Your Renewals.

    The simplest way to ensure that you keep on top of the domain names you own and when they are due for renewal is to keep a written document detailing as much information as possible about your domains, this document should include information such as the domain name itself, the registrar you used to register your domain name, the cost of the domain name and, most importantly, where the domain is pointing to, the period of registration and, the date when the domain needs to be renewed. By having this information readily available and, by keeping this document up to date with each new domain name purchase you should be able to ensure that no matter when your domain/s become due for renewal that you are on the ball with paying the domain name renewal fees.

    Domain Name Renewals Overview.

    Regardless of when you register a domain name the one way you can be sure to be the owner of the domain for years to come is to ensure that you keep accurate, detailed records of each domain name purchase, whether you keep this written on a calendar, on a piece of paper or, somewhere else, you should make part of your monthly routine checking this document and making sure that the domains you own are all fully working and, more importantly, are fully paid up.

    Article written by Lee

  • Cleaning Up The Myths On Scrubbing

    Date: 2011.02.21 | Category: Billing Solutions | Response: 0

    Time and time again on message boards I see the same old topics regarding scrubbing usually preceded by some company being accused of scrubbing their webmasters surfers to much and the webmasters sales being lower because of the sponsor ‘scrubbing’ their surfers however, the reality of this is, it isn’t the sponsors who control how much or how little the surfers credit card transactions are ‘scrubbed’.

    The E-Commerce Dilemma.

    Irrespective of whether you are an online bookmaker, bakery or adult pay site owner the fact of the matter remains that only credit card fraud is on the increase and, in addition to the rise of online credit card fraud the methods in which the perpetrators of these crimes carry them out is also changing often combating the methods put in place by the online transaction processors to stop this happening luckily however, this is where ‘scrubbing’ comes into effect.

    So What Is Scrubbing?

    Scrubbing is a method used by the credit card processor that the companies who’s site you are sending a surfer to uses. Scrubbing is in effect, a method of calculating the probability that any single transaction (or group of transactions) could be fraudulent. That is to say, is being carried out by someone other than the true owner of the credit or debit card.

    Scrubbing is probably the single most useful tool provided to our sponsors by the credit card processors to ensure that every transaction that gets sent to them is credible and, once the transaction is allowed (or not) a part of the information contained with the transaction is sent to a central database to help other clients of that processor guard against receiving unlawful transaction purchases.

    How Does Scrubbing Affect Me?

    As a webmaster, believe it or not, scrubbing is actually a good thing for you. You know that each transaction processed is first of all a legitimate one and, secondly, you know that the sponsor who you are using is not going to go bankrupt due to excessive illegal transaction. This means that the sponsor can improve the services they offer YOU as a webmaster to assist you in making more money.

    In essence, the scrubbing of credit card transactions at a sponsors level increases the amount of money you make long term not only with that individual sponsor but, with every other sponsors who uses the same transaction processor.

    Article written by Lee.

  • Robots.txt – Control The Robots That Crawl Your Sites

    Date: 2011.02.24 | Category: Search Engine Optimization, WebDesign | Response: 0

    By writing a structured text file you can indicate to robots that certain parts of your server are off-limits to some or all robots. It is best explained with an example:

    # robots.txt file for general use on web servers.

    User-agent: webcrawler
    Disallow:

    User-agent: googlebot
    Disallow: /

    User-agent: *
    Disallow: /cgi-bin
    Disallow: /logs
    The first line, starting with ‘#’, specifies a comment.

    The first paragraph specifies that the robot called ‘webcrawler’ has nothing disallowed: it may go anywhere.

    The second paragraph indicates that the robot called ‘googlebot’ has all relative URLs starting with ‘/’ disallowed. Because all relative URL’s on a server start with ‘/’, this means the entire site is closed off.

    The third paragraph indicates that all other robots should not visit URLs starting with /cgi-bin or /log. Note the ‘*’ is a special token, meaning “any other User-agent”; you cannot use wildcard patterns or regular expressions in either User-agent or Disallow lines.

    Two common errors:

    Wildcards are not supported: instead of ‘Disallow: /tmp/*’ just say ‘Disallow: /tmp’.
    You shouldn’t put more than one path on a Disallow line (this may change in a future version of the spec)
    Ultimately, without the use of robots.txt files on your servers/domains, you are risking a variety of potential problems including, unauthorized access to your cgi directory, unauthorized viewing of your site stats, possible spamming of the search engines by accidental crawling of doorway pages.

    One distinct advantage however of having a robots.txt file on your server is that, quite simply, you will be able to tell when and where your site has been indexed or potentially indexed as, all robots will automatically call for the robots.txt file BEFORE any other page on your server so, as long as you keep an eye open for any calls of this file, you can see who is knocking at your site for indexing purposes.

    Below is a robots.txt example that you can copy and paste into a text document to use on your own server:

    <!–Start Copy Below This Line–>

    User-agent: *
    Disallow: /cgi-bin
    Disallow: /logs

    <!–End Copy Above This Line–>

    The above will allow all spiders to crawl all of your site except the subdirectory’s ‘cgi-bin’ and ‘logs’ which, may be altered to suit any subdirectory’s you do not wish the spiders to crawl on your server.

    Article written by Lee

  • Adult Hosting Glossary

    Date: 2011.02.21 | Category: Hosting | Response: 0

    Adult Hosting Glossary.

    With so many adult hosting companies looking for our business all of them telling us we need a variety of applications and software packages to run our sites, just how do you know what you do need and, more importantly, what you don’t?

    Below you will find a list of a variety of common terms used in relation to hosting your website and, hopefully, you will in turn, discover what your requirements are when looking for a new or alternate hosting company.

    Alias
    A name that points to another name. Aliases are used to make the original name easier to remember or to protect the site’s identity.

    Applet
    An applet is an embedded program on a web site. Applets are usually written in the coding language called Java. They are normally used for creating a virtual object that may move or interact with the web site. An applet is like a small piece of executable code that needs a full application to run it.

    Active Server Pages (ASP)
    Active Server Pages allow web developers to make their sites dynamic with database driven content. The code is mainly written in VB Script, and it is produced on the server of the web site instead of the browser of your web site visitors. The server reads the ASP code and then translates it to HTML.

    Audio Streaming
    The process of providing audio content on a web site. This takes up a large amount of bandwidth, especially if you get a lot of visitors at your site. Some hosts do not allow audio or video streaming because of this.

    Auto Responder
    An automated program that acknowledges receipt of an e-mail message, and then sends back a previously prepared email to the sender, letting them know it was received. Once you configure your auto responder, it sends e-mail with no further action required on your part, making your web site interactive around the clock. Most hosting companies let you set this up through their control panel.

    Availability (Uptime)
    Refers to the amount of time within a 24 hour period a system is active or available for servicing requests. For example, if a hosting company says it is available 99.9% of the time, they are claiming that your web site will up all the time except for about 8 seconds each day. Over the course of a year, in this example, the hosting company is claiming that your site will only be unavailable (couldn’t surf to it) for 48 hours.

    Backbone
    A high-speed line or series of connections that forms a major pathway within a network. The term is relative as a backbone in a small network will likely be much smaller than many non-backbone lines in a large network. In general, the better the backbone of the hosting company, the better the availability of the web sites that run on their computers.

    Backups
    Web hosts back up data on their servers. Many host packages offer backups every 24 hours. This is supposed to prevent the loss of data should something happen to the server. . If you think you may need to restore old data in case of a disaster, it may make sense to choose a hosting company that performs regular backups.

    Browser
    This is the client software that displays (interprets) the HTML code it receives from the server. All browsers work slightly different and one may not display the pages correctly if the code was developed exclusively for another browser. Today the two main browsers are Microsoft Internet Explorer and Netscape.

    C +/++
    C+ and C++ are programming languages. Some hosting companies provide access to C+ and C++ class libraries if your web site contains these types of program modules. Once your web site has been constructed, you will know whether access to C+ or C++ will be required.

    CGI (Common Gateway Interface)
    A CGI is a program that translates data from a web server and then displays that data on a web page or in an email. CGI involves the transfer of data between a server and a CGI program (called a script). This allows HTML pages to interact with other programming applications. These scripts make web pages interactive. Page counters, forms, guest books, random text/images and other features can be driven by CGI scripts. Some servers have pre-installed/pre-defined CGI scripts, meaning that the scripts are already installed on the server for you to use on your site. Some servers permit user-defined or custom CGI scripts, which means the site owner creates his/her own CGI script and runs this custom made script on the web site. Not all servers allow user-defined (custom) scripts for security reasons. Almost all hosting companies offer CGI today. If you think you will need forms on your web site, CGI could be a key requirement.

    Chat Server / Software
    Some hosting companies allow you to develop a chat room or other type of chat service for your visitors. Be sure to check with the web host company about the details of the chat services offered. Some servers permit you to configure the service, and others pre-configure everything for you while others do not allow chat rooms at all.

    Click Through
    This term is used to describe the ratio of clicks to impressions on an advertisement, usually a banner ad. If a banner has been shown 100 times and 3 people click on it, it will have a 3% click through ratio.

    ColdFusion
    An application which simplifies database queries by allowing for a simpler programming language to handle functions between the user’s browser, the server, and the database. After you have developed your web site, you will know whether ColdFusion is a requirement. If you have not used ColdFusion to develop your site, you should ignore this feature.

    Co-Location
    Co-location means housing a web server that you own in the facilities of a hosting provider. This option is perfect if you want to own your own server, but do not want the hassle or security risk of maintaining that server.

    Control Panel
    An online package of tools permitting easy site management and editing. Almost all hosting companies provide this option today. It is a very important feature to have. By having your own control panel, you can maintain basic information about your site, mail boxes, etc. without having to send emails to the hosting company or call them on the phone.

    Cookie
    A message given to a Web browser by a Web server. The browser stores the message in a text file called cookie.txt. The message is then sent back to the server each time the browser requests a page from the server. The main purpose of cookies is to identify users and possibly prepare customized Web pages for them. When you enter a Web site using cookies, you may be asked to fill out a form providing such information as your name and interests. This information is packaged into a cookie and sent to your Web browser which stores it for later use. The next time you go to the same Web site, your browser will send the cookie to the Web server. The server can use this information to present you with custom Web pages. So, for example, instead of seeing just a generic welcome page you might see a welcome page with your name on it.

    Credit Card Billing
    What is a merchant account? Why do I need one? A merchant account gives a business the ability to accept credit cards as payment for the company’s goods and services. It provides your customers with an extremely popular payment option, beyond cash and checks. This is usually done via a 3rd party provider such as Ibill.

    CSS (Cascading Style Sheets)
    Used to add more functionality to simple HTML pages. Internet Explorer 3.0 and up support a good portion of CSS, while Netscape 4.0 and up supports a small amount of CSS – a fully compliant browser does not exist yet.

    Database Support
    If your web site will leverage a database to store information, database support by the hosting company will be required. After you have developed your web site, you will know which database will be required. Some commonly used database programs are SQL Server, MySQL, Access, Oracle, and FoxPro. Databases can be difficult to configure properly. Before you sign up with a web host, first inquire if the host can support your database needs.

    Data Transfer
    This is the amount of data that is transferred from an account as visitors view the pages of the web site. If you have a web site with lots of video, audio, and images that gets many visitors per day, you would have to make sure that you choose a host that will allow large amounts of data to be transferred. If you choose a host that only allows 200 MB of data transfer per month, and your site transferred 500 MB per month, then the host may stop half of your visitors from viewing your site and you could lose potential customers. Your best bet is to try to find a host that offers unlimited data transfer or at least a Gig of transfer. A gig is more than enough for most web sites. As a general rule, 500 MB of data transfer is equivalent to 20,000 page views.

    Dedicated Server
    A more expensive type of account in which the web hosting company provides you with an entire hosting setup including your own server hardware that only you can use. This usually means a much faster loading time for your site because the entire computer is “dedicated” to running the server software. This is different from most other hosting accounts in which your web site will share space on a server with many other web sites, called a virtual server. A dedicated server makes sense for web sites that require higher availability and higher data transfer rates.

    Disk Space
    This indicates the amount of disk space that will be available to you on the hosts server to hold your web site files. Normally because HTML files are small, a web site (unless it has extensive graphics or database functionality) will be small, as low as 1 or 2 MB in most cases.

    Domain Parking
    Many hosting companies give you the option to ‘park’ your domain name without actually having your web site up and running. This is a nice option if you want to acquire a domain name for your web site well ahead of having the web site itself designed and constructed.

    Domain Name
    The unique name that identifies an Internet site. Domain Names always have 2 or more parts, separated by dots. The part on the left is the most specific, and the part on the right is the most general (adult-hosting-companies.com). Technically, the domain name is a name that identifies an IP address. To most of us, it simply means www.yourname.com. Because the Internet is based on IP addresses, not domain names, web servers depend on a Domain Name System (DNS) to translate domain names into IP addresses. Simply stated, domain names allow people to find your web site by name rather than by its numerical (IP) address.

    Domain Name Registration
    Often a hosting company will offer to register your domain name at the time you sign up for a hosting plan. This normally incurs an additional charge but may be cheaper and more convenient than using a separate domain name registration service. We recommend that you go ahead and register your domain name as soon as possible, especially if you think it will take some time to develop the site itself.

    Domain Name System (DNS)
    A model for tracking other machines (that contain web sites) and their numeric IP addresses. Translates domain names (for example, www.adult-hosting-companies.com into a numerical IP address). When a computer is referred to by name, a domain name server puts that name into the numeric IP address assigned to that computer. So when you buy a domain, say www.yourname.com, it does not become accessible until it gets assigned an IP address from a hosting company. Once the IP address is assigned, a cross-reference record (DNS record) is created that points your domain name to the numeric IP address.

    Email POP Account
    POP (Post Office Protocol) is an actual e-mail account on your web host’s e-mail server. Think of each POP account as a unique email address (lee@adult-hosting-companies.com, advertising@adult-hosting-companies.com, etc.) Before you choose a specific hosting plan, you should know exactly how many email accounts are required to meet your specific needs.

    FrontPage (Microsoft)
    Front Page is an HTML editor made by Microsoft. It is commonly used to create web sites

    Frontpage Extensions
    Frontpage extensions can be thought of as “mini programs” that allow features of a web site created with MS Front Page to operate smoothly. It is possible to use MS Front Page to create a web site and host that site on a server that doesn’t offer FP extensions, however some of the powerful features of the program cannot be used in these web sites. See Microsoft’s Front Page site for more information. After you design your web site, you will know whether FrontPage extensions will be a requirement.

    File Transfer Protocol (FTP)
    A way of transferring files (uploading and downloading) across the Internet. Most web sites are uploaded to the Internet by means of an FTP program. This is how the web site you create on your computer at home is transferred (uploaded) to the Internet. Some software, such as Microsoft Front Page, does not require use of an FTP program but the use of most any other HTML editor requites the use of and FTP Program. There is a free FTP program called WS_FTP and you can download it at download.com. There are many Internet sites that have established publicly accessible repositories of material that can be obtained using FTP, by logging in using the account name anonymous, thus these sites are called anonymous FTP servers.

    Host (Name Server)
    When you hear the term “host” in the Internet world, it is referring to an Internet company that has the required servers and software to connect domain names to (IP) Internet Protocol numbers so that your site can be viewed by the public when they type your domain in their browser window. Basically this is where you house your site, and you usually have to pay a monthly or annual fee for this service.

    Host Country
    Specifies which country the hosting company resides. The internet is a very complex web of server computers connected through telecommunications devices. In general, it is best to host your web site in a location closest to the users that access it. For example, if you plan to deploy a web site that will attract mostly German visitors, it may makes sense to choose a hosting company located in Germany.

    Host Platform
    This is the platform of the hosting providers servers. Hosting companies will typically having a hosting platform based upon Windows 2000 (Win2K), Windows NT or Linux. If you have a basic web site that does not make use of server side applications such as a database then you do not need to worry which platform is used.

    Hypertext Markup Language (HTML)
    Stands for Hyper Text Markup Language. This is the code that web pages are written in and the browser interprets to turn into the web page you view on the screen.

    Hypertext Transport Protocol (HTTP)
    The protocol for transferring hypertext files across the Internet. Requires a HTTP client program on one end, and an HTTP server program on the other end. HTTP is the most important protocol used in the World Wide Web (WWW). You see it every time you type a web site in your browser http://…

    IP Address
    A unique number used to specify hosts and networks. Internet Protocol (IP) numbers are used for identifying machines that are connected to the Internet. They are sometimes called a dotted quad and are unique numbers consisting of 4 parts separated by dots, They would look something like this 111.222.333.444 Every machine that is on the Internet has a unique IP number – if a machine does not have an IP number, it is not really on the Internet. Most machines also have one or more Domain Names that are easier for people to remember.

    Internet Service Provider (ISP)
    A company or institution that provides access to the Internet in some form, usually for money. They will usually allow users to dial up through a modem, DSL, or cable connection to view the information on the Internet Access is via SLIP, PPP, or TCP/IP. Picking your ISP is an important decision but has more to do with how you access the Internet rather than which host you choose.

    JavaScript
    A scripting language which enables web designers to add dynamic, interactive elements to a web site.

    Java Servlets
    A servlet is an application or a script that is written in Java and executed on a server, as opposed to on a client. It is analogous to CGI, although servlets are more than simply CGI scripts written in Java.

    Mailing List Software
    A mailing list is a discussion group based on the e-mail system. You may want to set one up – they’re very useful promotional tools. Even if you don’t want to host a discussion group, you can use a mailing-list program to distribute a newsletter similar to http://www.adultwebmasternewsletter.com. Many companies have mailing-list software available for their clients to use — if so, ask whether there’s an additional cost, how many mailing lists you are allowed to have, and how many members per list

    ODBC Sources
    Open Database Connectivity (ODBC) is a generic way for applications to speak to a database. ODBC acts as an interpreter between an application (say a Cold Fusion or ASP application) and a database (like Microsoft Access). By using ODBC, a connector can be created that will allow a web application that you create to read data from and insert data into an Access database that you’ve created. An ODBC source is a directory entry that specifies database information. This ODBC source (or DSN Source) allows your site to point to the correct database located on the web server.

    It is possible to connect to a db without ODBC, but it is a safe bet to assume you need 1 ODBC connection per individual database you will have.

    Perl (Practical Extraction and Report Language)
    Perl is an interpreted language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It’s also a good language for many system management tasks.

    PHP
    PHP is another scripting language. Like ASP, it’s commands are embedded within the HTML of a web page. The commands are executed on the web server, making it browser independent. The web browser only sees the resulting HTML output of the PHP code.

    Post Office Protocol (POP)
    This is a method of retrieving e-mail from an e-mail server. Most e-mail applications (sometimes called an e-mail client) use the POP protocol, although some can use the newer IMAP (Internet Message Access Protocol). There are two versions of POP. The first, called POP2, became a standard in the mid-80’s and requires SMTP to send messages. The newer version, POP3, can be used with or without SMTP. The newest and most widely used version of POP email is POP3 email. You will see the term POP3 in most of the web hosting plans available today.

    Price
    The monthly amount that you will have to pay a hosting company to provide the hosting services requested. Paying monthly is normally perfectly acceptable, but discounts may be available by paying quarterly or annually.

    Reseller Plans
    Many hosting providers allow you to be a reseller of hosting space earning a commission off of each sale. If you intend to be a provider of hosting services, you should investigate this option as you decide where to host your web site. Many hosting companies offer discounts (in addition to revenue opportunities) to companies that wish to remarket their web hosting services.

    Root Server
    A machine that has the software and data needed to locate name servers that contain authoritative data for the top-level domains.

    Setup Fee
    Some hosting companies charge a one time setup fee to set up your hosting account. It is worth to also take this into account when looking at the monthly fee.

    Server
    A computer, or software package, that provides a specific kind of service to client software running on other computers. The term can refer to a particular piece of software, such as a WWW or HTTP server, or to the machine on which the software is running. A single server machine could have several different server software packages running on it, thus providing many different servers to clients on the network. More specifically, a server is a computer that manages and shares network resources.

    Shell Account
    Something experienced computer users often request. Permits you to edit your files online in real-time, rather than making changes to your site offline and then uploading the changes. Unless you intend to manage the web server your site runs on, a shell account should not be needed.

    Simple Mail Transfer Protocol (SMTP)
    The main protocol used to send electronic mail on the Internet. Most Internet email is sent and received using SMTP. SMTP consists of a set of rules for how a program sending mail and a program receiving mail should interact.

    Server Side Includes (SSI)
    Commands that can be included in web pages that are processed by the web server when a user requests a file. The command takes the form <!–#include virtual=”/path/to/file”–>. A common use for SSI commands is to insert a universal menu into all of the pages of the web site so that the menu only has to be changed once and inserted with SSI instead of changing the menu on every page.

    Secure Socket Layer (SSL)
    A protocol designed by Netscape Communications to enable encrypted, authenticated communications across the Internet. It is used mostly (but not exclusively) in communications between web browsers and web servers. URL’s that begin with “https” indicate that an SSL connection will be used. SSL provides 3 important things: Privacy, Authentication, and Message Integrity. In an SSL connection each side of the connection must have a Security Certificate, which each side’s software sends to the other. Each side then encrypts what it sends using information from both its own and the other side’s Certificate, ensuring that only the intended recipient can decrypt it, and that the other side can be sure the data came from the place it claims to have come from, and that the message has not been tampered with.

    Shopping Cart Software
    A software program which acts as a “virtual store front”. Such software typically allows a web site user to create and manage a virtual shopping cart to which items can be added or removed. Once a customer is ready to “check out”, this same Shopping Cart Software typically includes interfaces to allow customers to pay with their credit card directly on the site. Shopping Cart Software is critical for those web sites that intend to sell products and services directly over the Internet without human intervention.

    Statistics
    Many hosting companies run software on their web servers that collect usage information about your web site and compile it in a user-friendly, easy-to-read format for you to analyze trends about your web site. Having access to statistics is critical if you need to know how many visitors are coming to your site, which web pages receive the most attention, and how much time people actually spend browsing your site.

    Support
    Telephone or e-mail technical support provided to a web hosting company’s customers. When there’s a problem with your site or your e-mail, you want to be able to get an answer promptly by e-mail or on the phone. Some hosting companies offer email only support, telephone support, or a combination of both. Some hosting companies provide 24hr 7 days a week support (24/7). This is important if your site is an e-commerce site with a lot of daily visitors.

    TCP/IP
    This is a set of communications protocols to connect hosts on the Internet.

    Unix
    A computer operating system designed to be used by many people at the same time (it is multi-user) and has TCP/IP built-in. It is the most common operating system for servers on the Internet.

    Uniform Resource Locator (URL)
    The standard way to give the address of any resource on the Internet that is part of the World Wide Web (WWW). www.adult-hosting-companies.com is an example URL.

    Unique IP Address
    In many hosting plans, you share an IP address and you will be able to view your site through your domain name only. Obtaining a unique IP address (see IP Address) provides a one-to-one relationship between your domain name (www.yourname.com) and an IP address.

    Video Streaming
    The process of providing video data or content via a web page.

    Virtual Server
    A web server which shares its resources with multiple users. It’s another way of saying that multiple web sites share the resources of one server. If you do not need your own web server (i.e. your own server class computer), you will use a virtual server to host your web site.

    Article Written By Lee.

  • HTML Page Load Times – Making Them Quicker

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    Surfers on the web are here for one thing and one thing only, they want information, they want it to be correct and, more importantly, they want it now. We cant always help when it comes to getting the information however we can help them so far as making sure that when one of the surfers clicks on our pages they load quickly.

    Taking Control Of Speed.

    For many webmasters hand coding their HTML pages is an often timely and costly method and, because of this they turned to the WYSIWYG (What You See Is What You get) editors such as Dreamweaver and Frontpage to create their pages for them however, even this in itself requires some manually intermission on the webmaster part. Many of the older style WYSIWYG Editors added a fair amount of un-needed code to the HTML so, spending a few minutes after you have your pages created to physically go through the HTML code and clean up the junk html can in effect, cut down your page size by up to 25% in some instances.

    HTML Quotations And Hyphens.

    In addition to un-needed HTML tags you may also want to consider removing any quotation marks or hyphens from your HTML code, both of these can quickly clutter up a page and laden it down with more code than is actually required.

    For example, ‘HTML Coding’ makes just as much sense as me telling you HTML Coding when read in sequence. The trick with using quotations and hyphens is actually knowing at what point in your text you can ‘get away’ with removing them and, this is only something you will know yourself after proofing your completed page.

    Hyperlinks.

    If you are only going to provide links from one page of your site to another then, why use absolute paths? http://www.domain.com/linking.html is the same as /linking.html when you use it in a link from one page on your site to another and, well, in all honesty you have increased the load time of your page by only linking to the relative url instead of the absolute and that’s what we are trying to do here right? Make our pages load faster.

    White Space.

    White space on a web page can be a good marketing tool however, white space in your HTML code is a bad thing, placing spaces between certain parts of your HTML code can quickly bog down your load times instead, try to use the tab key to separate certain parts of code likewise, keep the use of &nbsp to a minimum, this can quickly become the most relevant term on your page if used in excess.

    One other benefit of making your pages as small as possible is that a webmaster wanting to steal your HTML code is going to have a harder time finding the exact piece of coding if the HTML is all on a single line than they would if the code was laid out nicely however, this in itself is only a deterrent and it wont stop those webmasters determined to steal your HTML code.

    Page Load Time Overview.

    Hopefully this brief article has given you some idea of ways in which you can practically reduce the load time of your pages without affecting the overall look and feel of your site and, who knows, if your page loads quicker, then you have a better chance of your surfer getting to your sponsor quicker.

    Article written by Lee

Premium Sponsors















Categories

Site Links