-
Why Go Adult?
When choosing a hosting company why choose an adult host over a mainstream one?
Simple, They provide above other things, a better quality of service, affordability and, most importantly, reliability.
Adult hosts face a variety of technical and support issues, this coupled with the points mentioned above makes them a far superior choice to standard mainstream hosting providers. This is one of the main factors why more and more mainstream internet based companies are now turning to the adult business forum to provide their hosting solutions.
Mainstream going adult? Yes that’s right, more and more mainstream companies are turning to our industries hosting providers for the fast speeds, security and, reliable infrastructures they can offer after all, adult sites are amongst the most prolific on the internet on average gaining more daily hits to their sites than mainstream websites so, they need to be cost efficient, not only to the hosting companies but, also to their clients, the webmaster.
Our industry strives on the use of heavy graphics, coupled with streaming media files to secure sales and longevity, this is why the adult hosting companies need to be able to provide not just a single, heavily laden server but tens of them, sometimes even hundreds all producing gigabytes of traffic on a daily basis.
Adult hosting companies are constantly upgrading their equipment in order to improve not just their servers, connectivity but also the smaller things that are often overlooked by webmasters, hubs, routers, switches and the likes along side the not so technical aspects of running a host, The staff.
Along with all of this technical equipment they also need to maintain a high level of technical knowledge, after all, not just anyone can install operating systems capable of running multi-million dollar industries. They need the knowledge to maintain, upgrade, repair and sell their services to the best of their capabilities.
What does this mean to you? Well, we all want to make money and, through the use of faster servers, e-commerce solutions and the technical support your hosting provider can give you, you will be fattening your wallet on a daily, weekly, monthly basis.
Adult hosting, quite simply, is the crème de la crème of the hosting world, they offer solid, solutions whether you are starting in the adult industry or, operate a mainstream e-commerce site.
So how do you choose a host that is right for you?
You need to ask some basic questions of the host and, do your homework. Not only should you find out what hosting solutions they can offer you but, you need to find out what their support service is like, how affordable they are in comparison to other companies who can offer similar or the same service. Whilst on the subject of hosting support, before you sign on the dotted line, give your host a call out of office hours, if they answer, then you can almost be certain they are a good hosting provider.
Of course, not all hosts will have 24 hour phone support, however, that said, some offer 24 hour icq support, email support and more.
Another sure fire way to find out if a hosting company is any good is to ask on the heavily traveled webmaster message boards, after all, you are not the only webmaster out there who will have tried this company, if they are no good, someone will know about it and point you in the direction of a reputable host like http://www.webair.com.
Hopefully, this article will have given you some insight into the world of adult hosting companies and, will assist you in making the right choice of host for your site, whatever type of website you might be hosting.
Article Written By Lee
-
Everything You Need To Know About Meta Tags And More!
Everything You Need To Know About Meta Tags And More!
There’s a plethora of different META Tags that you can make use of on your site. Because there are so many, it’s impossible for me to cover all of them in this article. However, I will describe the most common ones. But let’s start from the beginning, shall we?What Are META Tags?
META tags are similar to standard HTML tags. However, there is one big difference: You have to insert all META tags between the <head> </head> tags on your page(s). META tags are used primarily to include information about a document. The META tags will be invisible to your site’s visitors, but will be seen by browsers and search engines.For The Search Engines.
Several of the major search engines make use of the META Keyword tag, and virtually all of them make use of the Description tag. These tags help the search engine spider determine the content of your web site so that it can be indexed properly.This is what they look like:
<META name=”keywords” content=”Webmaster Resource Site”>
<META name=”description” content=”Online Webmaster Resource Site”>You can also instruct the search engine robot/spider how to index your site using the robots META Tag. This is what it looks like:
<META name=”robots” content=”noindex,nofollow”>
What the tag above does is tell the spider not to index the page that it appears on, and not to follow the links on that page. Here’s a complete list of attributes for the robots tag:
index – the default, the page is added to the search engine database
noindex – the page is not added to the search engine database
nofollow – the spider doesn’t follow the links on that page
none – same as “noindex, no follow”
To use any of these attributes simply replace the “noindex,nofollow” text in the example above with whatever you want to use. If you need to use more than one attribute, separate them with a comma.
Client Pull.
Have you ever seen a page that automatically refreshes to another URL after a few seconds? Did you ever wondered how it was done? I’ll tell you. The page made use of one of the http-equiv META Tags to automatically “pull” you to a different page after a few seconds. Here’s what the code looks like:<META http-equiv=”refresh” content=”1; url=newpage.htm”>
The value of content denotes how many seconds will pass before the new page is called for. If you want it to happen as soon as a person hits that page, then set the value to “0”.
Prevent Caching.
If you want to prevent a page being saved in your visitor’s cache you can do so by inserting the following three tags:<META HTTP-EQUIV=”expires” CONTENT=”0″>
<META HTTP-EQUIV=”Pragma” CONTENT=”no-cache”>
<META HTTP-EQUIV=”Cache-Control” CONTENT=”no-cache”>Why would you want a page not to be cached? If your site is updated frequently and you always want your visitors to see the newest content/changes, or if you want to ensure that a new banner is loaded each time from your server when a page is accessed, you’ll want to use the tags above.
A quick note here on banner caching: In addition to using the tags above, you’ll want to append random numbers at the end of the tag calling the image.
Rating Your Content.
By using the rating META tag on your site, you can specify the appropriateness of your web site for kids. The tag looks like this:<META name=”rating” content=”general”>
In addition to the general rating, you can use three others. They are:mature
restricted
14 years
Misc. Tags
Below I’ve listed several other popular tags that you may have seen around the web.
The generator META tag is used to specify what program was used to create your web site. Many HTML editing tools automatically insert this so that a company can gauge their market penetration. The tag looks like this:
<META name=”generator” content=”program name and version”>
The author tag is used to identify the author of a page. Simply replace “author’s name” with your name or email address.
<META name=”author” content=”author’s name”>
The copyright tag identifies the individual or company that holds the copyright to a particular page. This is what it looks like:<META name=”copyright” content=”This page and all its contents are copyright 2003 by Lee Windsor. All Rights Reserved.”>
I hope this article gave you some insight into the usage of Meta Tags and how they can benefit your day to day business.
Article written by Lee
-
Using Basic Server Side Includes (SSI)
Server side includes are what their name sounds like. A way to include the contents of another file into your current web page BEFORE the web page gets sent off to the surfer. Not only does this include contents of a static file but you can also include the results of a CGI program and on some web servers, you can even have it display the current date and time.
Now, many web hosts do not normally have server side includes turned on. You will have to ask your host if they have SSI turned on and if they do, what is the file name extension for SSI. By default, SSI files have an .shtml extension.
Sometimes, you can turn SSI on yourself. If you host doesn’t have SSI turned on for you already, you can try adding the following two lines to your .htaccess file. Then create a file with the .shtml extension, include a SSI command and see if it works.
AddType text/html .shtml
AddHandler server-parsed .shtmlWhen you use SSI commands, you place them exactly in the location within your web page where you want the output of the SSI command to appear when you finally browse the page. If you have SSI, then you can use the following command to include a file. When you include a file, you can either give it a path name to the file or you can give a URL to the file. I’ll list both here.
<!–#include file=”/some/path/above/my/web/to/my/header.html” –>
This is an example of how to include a file based on its path name. Now,
here’s the same file put included with its URL.<!–#include virtual=”/to/my/header.html” –>
And this is an example of how to use a URL. With a URL however, it cannot be a complete URL such as http://www.somesite.com/somefile.html. It has to be within your current website. You can also use the URL method to run a CGI script! Here’s an example of that:
<!–#include virtual=”/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2″
–>As you can see, we can even pass arguments to the CGI script just as if you typed it into your browser! There is also another way of running a CGI script but this is not as widely used any more and you should use the #include virtual method instead. Here is the same example so that you will know what it means when you see it.
<!-exec cgi=”/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2″ –>
As I mentioned earlier, you can use SSI to display the current time and date. Here’s how:
<!-echo “$DATE_LOCAL” –>
This will display the current date and time. SSI is usually used when you want to have a standard header or footer on each page. It’s also used for displaying rotating banners or page counters. As you see above, you can also use it to display the current date and time or the date when the page was last modified.
SSI has also been used for cloaking and some tracking software uses SSI to track each incoming hit to the web page. If you would like more information about SSI, go to
http://www.apache.org/docs/mod/mod_include.html. This is the definitive guide on SSI on the Apache web server.Most other web servers that use SSI also follow these conventions.
Article written by Lee
-
Traffic Filtering – Country Specific Redirects
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 | JapaneseThe 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
-
Over The Rainbow
So why is the gay community over the rainbow? As promised today I’ll finish up on the symbols that are prevalent in the gay community. Last week I mention the Pink Triangle and it’s political emergence. And technically, the rainbow flag has a similar political beginning.
I always love answering a question with another question (it is one of those annoying habits I have). So, when I am asked the “what does the rainbow flag stand for?” I look forward to the response when I ask, in turn, “what do YOU think it means?” Here are my top three favorite answers:
1 – “It’s colorful and gay people like colors.”
2 – “It’s a dance party thing”
3 – “Judy Garland sang Over the Rainbow you guys loved her a lot.” (This has to be my all time favorite.)
Well like any political symbol, it is a way to distinguish ourselves. But this time we look not to a place in history but we look at the world in general. No matter where you are, whether it is on 8th street in NYC or Rue du Champe in Paris, there will be a gay person somewhere. Now, some may argue that not all cultures and societies will have homosexual present. And I say, “BULL”. They are just in the closet somewhere.
So in essence, gay men and women cross every racial and religious culture around the world. We come in all shapes, sizes and colors. So what better symbol to show that with than a rainbow, all colors coming together as one – as one community. No matter how culturally diverse our world is, the gay community is made up from a piece of each.
The rainbow flag and the uses of the rainbow, in the gay community, are diverse. If you see it flying outside on a restaurant wall, and it means it is a gay or gay friendly establishment. See a set of rainbow rings around a friend’s neck, it’s gay fashion accessories. And see a political march with rainbows on posters and flags, it’s a gay assembly.
Last week I insinuated that the pink triangle was not a symbol to over use in design. Well, in my opinion, the opposite is true with the rainbow and the rainbow flag. I am NOT saying run out and re do all your sites with rainbow backgrounds. No! But, I am saying that the nature of this political symbol is somewhat more flexible. We ourselves took the rainbow and made jewelry, publications, tee shirts and such. And just as the pink triangle, the rainbow will say that it’s ok to be here, you have friends inside or you have nothing to worry about here – be yourself, this place is for you.
So what have we learned? What some people think as silly symbols that gay people use, actually have an origin – and, a potent origin at that. I still ask, for your own good, that you use them wisely and not over do it. The more you throw symbols around willy-nilly, the more people will think you do not know what you are doing. And the more that the surfers thinks that, the less likely you are to make the sale and get your business to grow.
Article written by Gary-Alan
-
Records Keeping Compliance Checklist for European Content Providers
More and more European Content Producers are choosing to do business with American. webmasters. While citizens of foreign countries cannot be compelled to comply with United States’ restrictions on the creation of adult material, business realities are forcing foreign content producers to consider voluntary compliance. American webmasters, painfully cognizant of the increasing need to focus on legal compliance, consistently reject foreign content that is not produced in compliance with 18 U.S.C. §2257. Non-compliant content not only increases the risk that an underage model could slip through, but failure to strictly comply is itself a federal felony, exposing those involved to a 2-year prison term. Given the substantial compliance motivations involved, foreign content producers are expected to adopt the U.S. requirements as the global standard for creation of sexually explicit imagery. The following constitutes a bare minimum checklist for compliance with the requirements of Section 2257:
1) Assume that all erotic images require Section 2257 compliance: While the law only applies to actual “sexually explicit activity,” it is ill-advised for the content producer or the webmaster to attempt to guess which images require compliance, and which can be safely distributed without compliance. Since child pornography does not require the depiction of sexual activity to meet the federal definition, such distinctions can be risky business. And, in any event, a release given by a minor normally is not enforceable.
2) Obtain a signed compliance form created by a competent attorney: Section 2257 requires that certain records be created containing certain information. The right form is the best place to start.
3) Obtain, at a minimum, the following information from each model:
a. Date Of Birth
b. Legal Name
c. All other names, aliases, nick names, stage names, and maiden names
d. Social Security Number
e. Copy of Government-Issued Identification containing a picture; preferably 2 pieces of identification. Note the requirement that the producer actually examine the identification document, not just the copies.
f. Address, phone and other contact information
g. The model’s signature
4) Require the model to execute a binding model release prepared by a competent attorney. The images are only as legal as the model release backing them up. If all relevant rights have not been transferred and released by a valid model release, both the webmaster and the content producer are subject to claims once the content is displayed on a Web site.
5) Maintain the records so that they are cross-indexed by the models’ legal names and stage names and by web page. Alternatively, provide copies of all records to the webmaster if the webmaster will act as Records Custodian. You need to discuss the particulars of this with an attorney, because each circumstance may be unique.
6) The Records Custodian should maintain an off-site backup copy of the records: What happens if there is a fire or a government seizure?
7) Include a conspicuous records custodian disclosure on all CD’s / DVD’s containing erotic imagery, including the full legal name of the custodian and physical address where the records are kept. The disclosure should also certify that all models are over the age of 18, and include the date when the content was first created, published or republished. Placement of the disclosure on the product should be reviewed by an attorney.
Only through strict compliance with the mandates of Section 2257 will American webmasters fully embrace content produced overseas. The right compliance procedure will open profitable markets for foreign content producers, and result in a wider variety of adult content for both webmasters and consumers.
Article written by Lawrence Walters
-
Domain Name Renewals – The Basics
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
-
Marketing And Building For Women Sites
When marketing sites to the female surfer, just how different does the building process become, are there things that you should leave out or add in that you usually wouldn’t for the male adult arena? Hopefully this article will explain this in some more depth.
I have broken this article down into specific segments that should be considered when building your for women sites these are as follows:
Sub Niches
As with every other niche in the adult industry the For Women market has their own individual sub niches. These vary from young guys to older men, couples, stories, fantasy, bondage, cartoons and a whole plethora of other niches all of which are to many mention here. Your chosen niche should reflect in the content you will be using and, more importantly, the content of the pay site to where you are sending the surfer. This is the best time to get a feel for your content and, it alleviates some hardships later on when you realize you have built a site full of hairy guys, only to realize the only site you can send them to is a gay bear site, not the most appealing site for a female surfer to join.
Where Do You Want To Go With This Site?
Are you looking to create a free site for the sole reason of driving traffic to your surfer trap, are you going to make a free site in order to make a sale, are you building a site for an AVS system? These are all decisions that you need to make before you start the building process, planning at this stage will reap its benefits later on. You should also consider the sponsor that you will utilize on the site, are you going to use all pay sites, sex toy sponsors or, will you use a mix, you need to plan this well as you do not want to end up with a site where all of the sponsors you are using end up negating the values of each other.
What Type Of Female Are You Looking To Attract?
Do you want to attract female surfers looking for erotica or, do you want to attract female surfers who are after something else, take a look at some of the female traffic sites, see what each of the sites presented to you offer their female surfers, can your match or better what these sites offer and, more importantly, can you offer something that the female surfer is likely to want?
Content Is King.
As with every other niche you need to pre-select the content that you will use on this site, do you have something that can be used and, used in such a way it generates interest from the surfer, if you are using stories on your site are they appealing, how do the men in the images look? All of these need to be taken into consideration before you start to use your content, if you do not have any content you need to choose some from one of the for women content providers, keep in your budget, make sure the content is right for your needs, not to hardcore but, not to softcore, keep it simple and erotic.
Layout
When creating your galleries be creative, anyone can stick up a 10 pic gallery but it takes a true marketer to place creative text on the page, provide the female surfer with some additional information, make it up if you have to, tell them the model is called Brian, tell them his stats, let them know some more information about the model. This will be more likely to get the women who visit your galleries / sites interested in both the images and, more importantly, the erotic side of the model you are using, if the model is available inside your sponsor pay site, you will more than likely find that the female surfer will want to get more information about the model out of sheer interest alone if nothing else.
Choose Your Marketing Strategies.
Will you be using banners, text links or, other media to sell your for women sponsor? We all know the proliferation of banners on the internet have made them less ‘click-able’ than what they used to be. Use some ‘erotic’ text over banners or, even use text on its own.
Keywords And Relevancy
Keep your smack talk pleasant but to the point, the majority of female surfers would prefer to click on a link that said ‘Steve erotically caressed his penis against her cheeks’ than, ‘Steve shot his hot creamy load all over her face’ see the difference? one is sensual and erotic the other is pure porn, female surfer are mainly erotica driven not porn driven.Speak To Another Webmaster / Web Mistress.
The for women niche is still relatively untapped at the moment, the people who are catering for this niche know the niche, most of them are female themselves and, as such, will know what works and what does not. How would you speak to a woman you met in public? There is a difference between speaking to a ‘guy’ and speaking to a female. Let this difference also show in your site too. If you have no idea how to market to women, ask one, you can find a message board dedicated to female webmasters at http://www.femalewebmasters.com and i am sure one of the posters there would be happy to help you out.
Design And Practice.
You now have the basics set you should now move onto designing you layout, keep your design simple, keep it neat, don’t over do the ‘female’ aspect of the site, over use of pinks, pastels and similar colors can undo all the preparation work you have just done, be subtle, know you are designing a site for the female surfer but keep it generalize, soft tones in color are not always the best way to use colors. Pink is not always for girls, blue is not always for boys, shades of pastel blue has just as much of a feminine effect as pinks and reds. Choose your color scheme wisely and this will pay off big time.
However you decide to develop your site you should ensure that it melts together nicely, use contrasting colors for your banners, background and text, make sure the content is not too gay looking and that the female surfer knows the site was built specifically for her but, also ensure you have the links visible in case you get surfers from other niches at your site, don’t do yourself out of money just because this is a for women site this is probably the only element that crosses over between niches be they straight, gay or in fact, for women.
Article written by Lee.
-
Foreign Search Engines
‘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
-
Mirroring Adult Sites – Stage One.
In this next series of tutorials I will be exploring the benefits of utilizing your existing content to build more sites in the least amount of time possible, in fact, after you have completed the steps in this tutorial series you should be able to build over 20 types of site within 5 minutes using a single set of 50 pictures.
So, onto the start of our tutorial.
Stage one in this tutorial is something we have ALL done before, so what you need to do is this…
Build a 50 pic free site, this is using a lot more content than a ‘standard’ free site however, what we are actually going to be making is a set of AVS sites and several TGP galleries, along with some SE pages and also some links list mirrored pages using this set of 50 images by building just ONE site! Sounds impossible? It isn’t… read on….
Your site should have the following on it:
1) Warning Page (index.html)
2) Menu Page (menu.html)
3) Gallery Pages (5 galleries of ten pictures called gallery1.html, gallery2.html etc)
4) HTML Large image pages x 50 (picpage1.html, picpage2.html, etc.)
5) Multi Site FPA (fpa.html)Now lets break these individual pages down into sets of instructions for each:
Warning Page.
This should have your standard warning text placed on it, along with an enter AND an exit link. The ‘enter’ link should link to your Multi Site FPA and the ‘exit’ link should go to a program such as the ARS Discreet Browser tour page.Menu Page.
This should be a page containing an odd sized banner, links to your 5 gallery pages, plus text links at the bottom of the page ideally, these text links should be in the same style as the niche tables we created for the surfer trap except they should only contain 4 cells instead of 8. These links should go to a different ‘niche’ as the one you are building your current site for and, link to the existing FPA’s of your surfer trap.Gallery Pages.
On your gallery pages, ALL of the thumbnails should be linked to the relevant HTML page with a text link at the top and at the bottom of the HTML page (No Banners are to be used on the gallery pages!) Also, the file names of the images should be pic1.jpg, pic2.jpg, etc for the full sized images and, thumb1.jpg, thumb2.jpg etc for the thumb nailed images. your images MUST be named this way!!Multi Site FPA.
This should link to the individual FPA’s that you should already have on your server if you followed the surfer trap tutorial series (If you did not create this surfer trap the tutorials can be found at this link) as well as linking to the Single Site FPA’s this should also have a ‘no thank you’ link which goes to your Menu Page.Images.
You need to have 50 images, you also need to have 50 thumbnails for the content you will be using on this site. I usually select my content by the niche I am building for, rename the images using The Rename then, once renamed I use Thumbnailer from Smaller Animal to create the thumbnails for each of the renamed images. This will give you 50 full sized pictures with 50 thumbnails named respectively for the larger image.They are the basics, now onto the good stuff…
Once you have created these pages you need to create some folders on your Hard Drive which will be the SAME structure you will have on your server. This folder structure should look somewhat like this once you have saved each of the pages we have just created into their respective sub folders:
FreeSite/index.html
FreeSite/AVS/
FreeSite/FPA/fpa.html
FreeSite/Galleries/gallery1.html, gallery2.html, gallery3.html, etc, etc.
FreeSite/Images/pic1.jpg, etc.
FreeSite/Images/Thumbs/thumb1.jpg, etc.
FreeSite/LinkList/
FreeSite/Menu/menu.html
FreeSite/PicPage/picpage1.html, picpage2.html, etc.
FreeSite/Recips/
FreeSite/Engine/
FreeSite/TGP/This will give you 5 folders with HTML pages in them, one folder with the full sized images, one with thumbnails in it and five empty folders.
At this point we will end the first stage in this tutorial as this should take you a couple of hours to complete.
Article written by Le
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing