• Adult Webmaster Health

    Date: 2011.02.21 | Category: General | Response: 0

    Sounds to me like you are a webmaster. Most of us realize that working at a computer everyday can and often is, bad for our health in one way, shape or, form. However, how do we alleviate these potential problems with our health?

    Well in this article I will detail some of the things that can often affect the webmasters in our industry and how they can be solved.

    RSI (Repetitive Stress Injuries) are the results of, as you may have figured out already, the effects of constantly doing the same movements over and over again using specific parts of your body. One of the most common of these that webmasters are aware of is CTS (Carpal Tunnel Syndrome) which is a result of typing a lot.

    So, how do you combat the effects of CTS? First and foremost, if you experience any form of pain at all, your first port of call should be the doctor, the pain you are feeling could be an indicator of a bigger problem. If you think your pain might be caused by use of the computer then an occupational therapist might also be a good person to visit.

    CTS is often attributed to use of your digits and poor hand positioning when you type one way to solve this problem is to go to Office Depot and purchase a wrist rest, this will ensure your wrist has ample support whilst you are working throughout the day.

    You might also like to try re-positioning your monitor, as a general rule of thumb, having your monitor placed about 20 inches away from your face will usually result in good posture and that in itself can often be a solution to the potential medical problems. One other thing on your posture, get a good chair, one with a high back may be good, these generally offer you more support and, can stop that awkward habit of leaning into your keyboard when you type.

    Eyestrain, Eyestrain is another common problem that the webmaster faces, often it leads to things such as excessive headaches, fatigue and, blurry vision, the most acceptable relief from eyestrain is the use of screen filter that will reduce the glare your monitor emits.

    There of course, some other things you can do to alleviate this problem such as, Adjusting your monitor so the top of the screen is no higher than eye level, as already mentioned, keeping the monitor a safe working distance from you, usually between 18 and 30 inches is recommended by doctors.

    We know computers are machines and tend to forget that our own bodies are complex machines which, should be looked after just as our computers should be, we often forget that sitting at the PC building what was meant to be a 10 minute site can turn into an hours worth of ‘online work’. Take some time every now and again to stand up and walk for 5 minutes, even if it is just to the local store to buy some more smokes, you are actually getting some exercise and, even though the tar in your smokes will end up killing you anyway, you’ll at least be able to work a little longer without getting any problematic computer related medical symptoms.

    This article is not meant as an alternative to visiting your physician and, should you think that any of the above are relevant to you then it is recommended that you visit your doctors without delay and follow any advice that they give you.

    Article written by Lee.

  • Barter For Business – Cost Free Trading

    Date: 2011.02.21 | Category: General | Response: 0

    Whether you are a designer, traffic broker, content provider or, web host the one thing that will connect your business in some form is that other webmasters at some point, will want the services and products that you offer. With this in mind, you are instantly at an advantage the reason for this advantage will become apparent in this brief article.
    Bartering Goods And Services.

    Bartering is a business practice that is as old as mankind itself, from the stone age right up to the present day individuals have been trading their goods and services for other goods and services of like value. This is where your advantage comes into play. Perhaps you are a web hosting company in need of design work or, perhaps you are a designer in need of traffic, either way, there will always be other webmaster who want the services you offer and, in return they will offer services that you require. This is the absolute fundamental basis of the barter system, trade one product or service for another in order to improve the way in which you do things.

    Finding A Company To Barter With.

    The problem that so often arises when bartering is involved however is finding a vehicle for you to start the bartering process. More often than not you can find someone on a message forum that will be willing to barter your services however, this is not always the case and so, you should turn to email to instigate the initial contact.

    Asking For A Barter – How To.

    First and foremost, before sending an email or making a post asking to barter your services or products you should compile a list of items that you need, this could be content, advertising, graphics work or even web hosting, either way, by having a clear concise list of what you are in need of and, more importantly, what you can offer in return prior to sending an email will help you out immensely.

    Now that you have your list of services you require and what you can offer in return it comes to the initial contact, the first thing you should do is explain what it is you are proposing as clearly as possible, explain why a barter with you will become a win/win situation for the both of you as well as making sure you drop a compliment or two about their company in the email. Also, you should prove why offering your services in exchange for theirs will be a fair trade, by doing all of this at the first point of contact you stand a much better chance of them accepting your trade proposal.

    Bartering – Recap.

    Bartering is a strong tool that can help you build your business from the very second you start it however, with this strong tool also comes the opportunity for it to become a strong negative when running your business. To much time concentrating on bartering services can take away from running your business to its fullest, rather than trying to barter services all the time, ensure you build a good capital up so you are able to invest in services to build your business. Either way, whether you choose to barter or not, this method has been proven in success for thousands of years, why not try it out for yourself?

    Article written by Lee.

  • Using .htaccess Effectively

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    The .htaccess file is an ASCII text document that can be placed in any directory on your site. It can be used to control access to files and directories, and customize some server operation in your site. A .htaccess file can be created in any word processor but must be saved as text only. You must use FTP software in ASCII mode to upload or edit your .htaccess file. For the examples provided here, place the .htaccess file in your root directory.

    There are a variety of functions that you can control using .htaccess some of the more useful of these are explained below:

    Custom Error Messages.

    Add the following to the .htaccess file::

    ErrorDocument 404 /notfound.html

    After “ErrorDocument” specify the error code, followed by a space, and then the path and filename of the .html file you would like to be displayed when the specified error is generated, each specific error code is detailed below with the recommended codes to be used in the .htaccess file in bold :

    200 OK
    206 Partial content
    301 Document moved permanently
    302 Document found elsewhere
    304 Not modified since last retrieval
    400 Bad request
    403 Access forbidden
    404 Document not found
    408 Request timeout
    500 Internal server error
    501 Request type not supported

    Using the codes above your error section of the .htaccess file should look like this:

    ErrorDocument 301 /notfound.html
    ErrorDocument 400 /notfound.html
    ErrorDocument 403 /notfound.html
    ErrorDocument 404 /notfound.html
    ErrorDocument 500 /notfound.html
    ErrorDocument 501 /notfound.html

    Redirect to a Different Folder.

    Add the following to the .htaccess file:

    RewriteEngine on
    RewriteRule ^/oldfolder(.*)$ /newfolder/$1 [R]

    This redirects the user from /oldfolder/anyfile.html to /newfolder/anyfile.html, when the .htaccess file is uploaded to the otherwise empty “/oldfolder” directory.

    Denying User Access.

    Add the following to the .htaccess file:

    <Limit GET>
    order allow,deny
    deny from 000.00.00.
    deny from 000.000.000.000
    allow from all
    </Limit>

    This is an example of a .htaccess file that will block access to your site to anyone who is coming from any IP address beginning with 000.00.00 and from the specific IP address 000.000.000.000 . By specifying only part of an IP address, and ending the partial IP address with a period, all sub-addresses coming from the specified IP address block will be blocked. You must use the IP addresses to block access, use of domain names is not supported

    Redirect a Machine Name.

    Add the following to the .htaccess file:

    RewriteEngine On
    Options +FollowSymlinks
    RewriteBase /
    # Rewrite Rule for machine.domain-name.net
    RewriteCond %{HTTP_HOST} machine.domain-name.net $
    RewriteCond %{REQUEST_URI} !machine/
    RewriteRule ^(.*)$ machine/$1

    This will redirect requests for the machine name machine.domain-name.net to the directory machine on the site domain-name.net.

    Different Default Home Page.

    Add the following to the .htaccess file:

    DirectoryIndex filename.html

    Then a request for http://domain-name.net/ would return http://domain-name.net/filename.html if it exists, or would list the directory if it did not exist.

    To automatically run a cgi script, add the following to the .htaccess file:

    DirectoryIndex /cgi-local/index.pl

    This would cause the CGI script /cgi-bin/index.pl to be executed.

    If you place your .htaccess file containing the DirectoryIndex specification in the root directory of your site, it will apply for all sub-directories at your site.

    Preventing Hot Linking.

    Add the following to the .htaccess file:

    # Rewrite Rule for images
    RewriteCond %{HTTP_REFERER} <URL of page accessing your domain>
    RewriteRule ^(.*)$ http://<same as above URL>

    You would replace the <URL of page accessing your domain> above with the domain name and path of the page that is referring to your domain. For example: www.theirdomain.com/users/mypage/

    The RewriteCond directive states that if the {HTTP_REFERER} matches the URL that follows, then use the RewriteRule directive. The RewriteRule directive will redirect any reference back to the referring web page.

    Using the above you should, safely be able to publish your sites on the internet knowing that you will not be privy to bandwidth thieves via hotlinking and also, that you will not lose any traffic through pages that are ‘not found’.

    Article Written By Lee

  • AVS Changes – Is The Proverbial Sky Falling?

    Date: 2011.02.24 | Category: General, Promotion | Response: 0

    With the announcement yesterday from several of the large AVS systems, Free Age Card, Sex Key and, Gay Passport (also speculation on and off the forums state that Mass Pass were aware of this happening) that they will no longer allow webmasters to use the terms; AVS, Adult Verification Service, AGE Verification Service and, Access to thousands of other sites what does this hold in store long term for AVS webmasters?

    Quite simply, it looks at first glance as if these changes have something to do with the speculation surrounding VISA and AVS systems from a few months ago.

    In fact, these changes have been on the horizon for some time now however, until yesterday webmasters seemed to be unsure as to what, if anything will be changing. Even though the speculation has been circulating for some time, one of the first AVS systems to envoke these new rules, Sex key, came out with the following statement; ‘While we knew changes were coming, we just now found out what we believe are the new requirements. With this new information, we are trying to comply as quickly as humanly possible.’ quickly followed by; ‘We felt it was better to give people a chance to modify their sites this weekend rather than to not be in compliance Monday.’- Craig Tant.

    One thing is certain, come Monday, there WILL be a lot of unhappy webmasters

    So apart from the added workload for webmasters what other issues is this likely to bring up in the immediate future, well, again, based on the rumors and, i should stress that is all they are up to this point in time, from a few months ago we could expect one or more of the following items to happen to the AVS model as we know it.

    1) Visa starts to charge the AVS companies the $750 fee just to process memberships.
    2) Visa starts to charge individual webmasters the $750 fee to use an AVS service.
    3) AVS Systems cease to exist.

    So, lets break each of the above items down and see how it will have a long term effect on both AVS webmasters and, the adult industry as a whole.

    AVS Companies Charged $750 Visa Fee’s.

    In itself this isn’t a big issue that we should be immediately worried about, after all the AVS company will be the one footing this bill and, with the amount of traffic and sales that these programs get $750 is a relatively small pebble at the foot of a mountain. That said however, some of the smaller AVS systems might end up having to close because they cant afford the fees in much the same way that some Amateur paysite owners had to close their aff programs.

    Webmasters Charged $750 Visa Fee’s.

    This is the option that i am most concerned with, after all, with thousands of AVS sites being built each day and being submitted to literally hundreds of AVS companies the potential cost of this could run into thousands for individual webmasters.

    Of course, with this expense there also comes some benefits. The immediate benefit that comes to mind is that a lot of the dishonest webmasters will refuse to or, be unable to pay this fee that in itself will lighten the strain for the rest of the industry.

    There is also the possibility that webmaster may need to pay this fee for each and every AVS that they submit to which, in itself will not only harm the individual webmasters but, it will also see the rise and, dare i say it, fall of some of the smaller or less profitable (from a webmasters point of view) AVS companies. No doubt if this did ever happen the likes of Cyberage, UGAS, Global Male Pass et al will be unaffected as, they have enough of a webmaster following and traffic base to ride this potential storm out.

    AVS Systems Cease To Exist.

    This is potentially the worst case scenario and, whilst i will be the first to admit that this is VERY unlikely to happen, the possibility needs to be looked at.

    What happens to all of your sites you have in the AVS systems? What happens to all of your potential rebills? What happens to all of that AVS traffic?

    Well i would say for the most part, changing your sites from AVS to the free model wont be such a big deal for webmasters however, the financial losses to individual webmasters and companies could run into hundreds of thousands a month. With these financial losses will more webmasters leave the industry or, will more of the AVS webmasters start running TGP’s and dilute the traffic quality even further?

    Speaking of traffic, we all know by now that AVS traffic is qualified potent traffic but, what will happen when this traffic, should the AVS be closed down, hit the adult web again? Quite simply long term the effects of such a force could have positive and negative effects ranging from paysite memberships sales rising to the onslaught and proliferation of free porn being searched for again – good news for TGP owners.

    As you can see from the above, all of the speculation, rumors and, facts speak for themselves in so much as, if you are an AVS webmaster, you NEED to start diversifying your business model to ensure that even if the worst doesn’t happen, you are still able to be profitable online.

    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

  • Time Management – Organizing Your Content Purchases

    Date: 2011.02.24 | Category: Content | Response: 0

    From time to time it is inevitable that as adult webmasters there will be two things that will happen:

    1) You will buy some licensed content.

    2) You will use this content for a gallery.

    However, unless your content is organized you can end up spending to much time to make a 10 pic gallery page. This article is going to offer you some sound advice on how to organize your content from the second you take delivery of it which, will save you a lot of time long term.

    So we have taken delivery of our adult content either by download or, on cdrom what next, we could just file it away on cdrom but, by taking a little extra time to organize your content from the start you will end up not only building sites MUCH quicker but also saving time all round.

    Here are some helpful hints to get you on the way to content organization.

    1) Unzip all your content sets and, if applicable, separate them into model and niche sets.

    2) Create folders for each model and, each set of 10 images within the main model sets.

    3) Rename all your images in the 10 pic sets starting from pic1.jpg through to pic10.jpg.

    4) Crop, compress and thumbnail each image within each set of 10 that you have.

    5) create a html page that calls your thumbnails and main pics using relative urls i.e. /set1/gallery1/image1.jpg for the larger image and /set1/gallery1/thumb1.jpg for the thumbnail image.

    6) Inside each of your 10 pic/thumbnail folders place this HTML page you have just created.

    7) Burn each of the gallery folders to cdrom.

    Lets now look at what an hour spent has enabled us to do.

    Instant Galleries.

    Say we want to build a 10 pic gallery to add into a free site or an AVS site that we are building, we know we have all the galleries already made, its just a case of finding the correct gallery and uploading it to our server.

    Image Swapping.

    What happens if we need to swap an image from one of our pages to a more appropriate one for the niche we are marketing to, simple, you go to the image set you want, look for the image name and simply change the image without having to upload it as, you will now know the EXACT location on your server of the image you are changing to e.g., /set6/gallery8/image9.jpg would change to set24/gallery2/image2.jpg.

    There are of course other ways this can benefit you for example, you can plug in your galleries to any site you own if you have them all uploaded to a central content location domain.

    The benefits of organizing your content from the instant you take delivery are endless, the above is just a sample of how I have successfully saved time and effort by becoming more organized, the only limitations you have with your organizational skills are those that you impose on yourself.

    Article written by Lee

  • Promoting Safe Sex In The Adult Industry

    Date: 2011.02.24 | Category: General | Response: 0

    To most webmasters, the only thing that needs to be considered when building and marketing our websites is the layout of the site, the sponsors that they will be using and ultimately, the amount of money they will make from the site however, there is another side of the adult industry that we should also be considering, the moral side.

    Safe Sex – Morally Speaking.

    We all have our own morals and work ethics however, I think that sometimes most of us push these to the back lines a little when it comes to making a buck which is understandable however, we are in a position of power somewhat over a lot of things that many of us do not even think about, we know that for the vast amount of industry webmasters there are more than 90% of them will actively report child porn sites when they find them however, how much further does this reach and, how much harm could you potentially be doing long term?

    Promoting Safe Sex – The Issues At Hand.

    Step out of your webmaster persona for a short while now while you read this next paragraph and actually think about what is being said, all of us in our communities realize that sexually transmitted diseases and especially HIV/Aids is on the increase although maybe not reported as much the one thing that you can be certain about whether you go to a gym, a bar or a doctors is that we are constantly shown images promoting safe sex, ask yourself how you feel about that and, furthermore, ask yourself if you would have unprotected sex with someone if the answer to this question is yes then the rest of this article will be of no consequence to you however, if the answer is no, then you may like to read on.

    Safe Sex Online.

    Now we have ascertained how you feel about safe sex, why do you not promote this more often on your sites and galleries? We are giving surfers a product that will, in all likelihood fulfill their fantasy and, quite possibly, be mimicked by them at some point in the future. With this in mind I would suggest the following to you if I may. When purchasing content, try to purchase photosets where the models are practicing safe sex, if a surfer see’s a famous porn star using a condom then, ultimately, they themselves may use a condom when they next have sex. When building a site or gallery why not promote a condom affiliate program on the site, either through the use of a text link or a button or banner, not only are you being responsible but, you are also still going to make money should your surfer buy something from your condom sponsor. A good sponsor for Condoms is http://www.condomexpress.com.

    Promoting Safe Sex – The Bigger Picture.

    As mentioned in the opening paragraph of this article, more often than not, webmasters choose to go with bottom line profits over their morals however, thankfully this isn’t always the case. Whether you decide to start promoting safe sex as a method to promote condom sales or, whether you choose to promote safe sex as it is a moral that you believe in, one thing alone will stand true, by showing the surfer that sex can be safe and fun, we are definitely doing our part towards making sure that not every webmaster is seen as morel-less.

    Article written by Lee

  • Marketing to Foreign Surfers

    Date: 2011.02.22 | Category: Promotion | Response: 0

    Marketing to Foreign Surfers.

    What would you do if I told you that there are 3 million plus new surfers last year that you did not market too? You probably marketed your product or adult site to those that could read English well enough to be searching with English terms. How about the growing numbers of surfers with English as their second language?

    According to Nielsen/Net Ratings, from September 2000 to 2001, Italy’s online population grew by 3,540,970 users: about one new user every ten seconds. Italy is just one of the non-English speaking countries that is coming online at lightening fast speed.

    Are you relying on these surfers searching for your English keywords? Are you thinking that every language uses the words “porn and hardcore” and what about the finer niches like “bisexual and titties”? The best conversion is with newbie surfers just online for the first time and wanting to see adult sites and products. Those that have been around a while find out about the plethora of free porn. This means that websites do their best marketing with search engine placements of their main sites or feeder sites. If you are on your money, you are trying to work every engine for every related keyword. Now think of the keywords that you could be going for in all the worlds’ languages!

    Do a bit of research in some of the common languages. If I was Italian and new to the net, the first place I would be searching is in an Italian search engine. Go to http://arianna.iol.it/ and search using the word porn and you will find 10 listings come up all in Italian. Not one is English. Even http://it.yahoo.com/ Yahoo Italia does NOT serve up your English porn site in its results.

    So how do you get a piece of this pizza pie? You need at least a doorway written in Italian. You need to visit a site like http://www.adult-site-translation.com/ and find out how affordable it is for a doorway page that is put together by a foreign translator. Not only is the text for your doorway sites or even complete tours with the proper keywords but the graphics are redone where necessary. You really cannot rely on a text translator. We all have been on a site where it was obvious that the webmasters first language was NOT English and felt bad for their awkward use of words. This is not how to make a sale.

    You need to be careful that you choose a professional service for your translating needs. You need to know that the translators are top notch and can not only translate your existing page/site keeping your marketing angles but they can also advise you on such things as proper wording and what a surfer from that culture would find erotic. Languages do not translate word for word. A service like Adult Site Translation has hired translators who also know how to market adult sites. They will tell you the search terms your page should be listed under and can assist you with foreign search engine optimization.

    Remember the days where you were the only site in a category or niche? It was like being a pioneer and it was very lucrative. Do you want to be first to market to these growing pockets of millions of new surfers? There are new frontiers out there and finally sites like Adult Site Translation can assist you to conquer them successfully!

    Article written by Susanna

  • Mirroring Adult Sites – Stage Four

    Date: 2011.02.23 | Category: Promotion, Tutorials | Response: 0

    We are now going to take our basic template and start to make some pages for the link lists for this you will need to open up your original warning page. Once you have this page open you need to visit a couple of the link lists that you use. Go to the submissions page of the link list and download their reciprocal buttons.

    In the same way that we did with the TGP pages we created you now need to edit the warning page you have open and insert the recip links on your warning page, ideally and, as most link lists will require this, the recip links should be placed above the enter and exit links.

    Once you have done this, you now need to save your newly edited page as linklist1.html in the /FreeSite/LinkList/ folder, do this for as many of the link lists that you wish to submit to, each time saving the new page in the /FreeSite/LinkList/ folder.

    Also at this stage, we should add a console to our link list page, ideally a blur console with links going to your surfer trap FPA’s. You can find the Java coding to create a blur console on the tutorial about building a surfer trap.

    Once we have done this, we now have some more sites created. However, this time, the page/s we have just created are designed to build the traffic we have to our site/s.

    Once you have these pages saved you now need to re-open your original warning page once more.

    This time, we are going to optimize the page for the search engines, again, in the same way we added our ALT tags on the surfer trap we are going to add them to the warning page however, we are also going to optimize our keywords, description and, site title.

    Once we have optimized our original warning page we should now save this as se1.html in the /FreeSite/Engine/ folder we created at the start of this tutorial. Once one SE page has been created, you need to create a selection of others making sure that you swap around the meta tags to ensure they are all different to each other, I would suggest making three variations of these SE pages each time saving them in the /FreeSite/Engine/ folder.

    The next thing we are going to do is to ‘dirty’ these SE pages up some more, pretty much in the same manner as we did with the surfer trap tutorial. What we need to do is add a small pop up console to the three SE pages along with a blur console, these consoles can be the same ones that we used for our surfer trap or, we can create new ones however, I think the smart thing to do would be if we used the ones we currently have online. So once we have added these consoles we need to save the pages.

    Also, to these SE pages we should add our Banner exchange code, as these will be going into the search engines there are no rules as to what we can and can not do on these SE pages so we should make sure that even if they just get one hit, we get additional traffic from them. By adding a banner exchange code as we did on the surfer tutorial we can drive additional traffic either to our sites or to our surfer trap, where you send this traffic is your choice. If you want to sign up for our new banner exchange you can find it at http://www.pornclient.com.

    Now we have the completed site template built. We need to submit the pages and sites we have just completed to the TGP’s, AVS’s, Link Lists and, the Search Engines.

    Once we have submitted these sites all that we need to do to create a new set of sites is to find another set of 50 images, rename the images as we did at the start of this tutorial, pic1.jpg, thumb1.jpg etc and simply upload the site to our server without the full size images and the thumbnails. Once the HTML pages are online, we now have to upload the full size images and the thumbnails and we have a set of sites using different content to our original one built in less than 5 minutes.

    The best thing with these sites is that if a any time we want to alter the layout, all we need to do is edit the HTML of the version we have saved on our HD and we have a new template ready to use.

    I hope you have found some use out of this tutorial and, I am sure you can think of other ways in which we can use templates of this style, this tutorial was just detailing some of the basics however, we can make the template as simple or as complicated as we like. Our only limits are what we make for ourselves.

    Article written by Lee

  • Domain Name Registrars – Saving Your Business

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    The one thing that all webmasters rely on to make their money is something that all of us have, a domain name however, what would or should happen to your domain names when and if, your registrar files for bankruptcy or just disappears, surprisingly enough i do not recall this ever happening in the industry to date however, being prepared for the worst case scenario is always a good thing.

    Prevention Is Better Than A Cure.

    As the age old adage goes.

    The first thing that you should do before even registering a domain name is to check out the background of the company you are considering using, you need to ask yourself a variety of questions about this company including the following:

    1) Is the registrar ICANN accredited?

    ICANN (Internet Corporation for Assigned Names and Numbers) is a non profit corporation which was formed to assume the responsibility over the IP and entire domain name structure as we know it. This in essence means that if your registrar is ICANN accredited then you at least know your domain name registration will be handled professionally and, should be reasonably secure so far as your registrar going out of business.

    2) What are you paying for?

    Many of the domain name registration companies packages vary greatly, with some companies you register a domain yourself, some companies register it on your behalf and, others will register your domain including some form of hosting etc, check with the company you are using to see what added services and support features they offer.

    3) What is their transfer policy?

    Some domain name registration companies have specific policies so far as transferring domains to other companies, registrars and, individuals go. Check with your registrar before you buy your domain to see what this process involves and, as always, check with one of the other registrars to see which registration company offers the best ‘bang for your buck’.

    Saving Your Name – Help And Advice.

    First and foremost, if you discover your domain name registrar has closed its doors you should immediately send an email to them and ensure you keep a copy of this email for your own records, ask them what is happening and, more importantly, what controls / access you still have available (if any) to manage your currently registered domains.

    Usually, you will receive some form of communication within a few days from your registration company letting you know what is happening and how you can continue to use your domain name.

    In most cases, when a domain name registrar company closes what you will find is that they will already be in the process of transferring the management of your domain to another registration company.

    If however, you are still able to control the domain yourself then you should immediately seek out a new registrar with whom you can manage the domain / domains that you own. At this point you should contact them and ask if they have any fast track solution to transferring your domain to their company.

    If All Else Fails.

    If after everything else you are still at a loss as to how your domain name transfer or registration is being handled then you should contact ICANN ( http://www.icann.org ) directly. Ultimately it is their responsibility to ensure that once you have registered a domain name, you are able to access it as you would like, in most cases however, contacting ICANN is always the last move you should make and, only use this form of information should you exhaust all other methods mentioned above.

    Article written by Lee

Premium Sponsors















Categories

Site Links