• Typography Know How

    Date: 2011.02.24 | Category: Writing | Response: 0

    Our web sites are nothing without content, and most content is comprised of simple text. Many web designers neglect to pay attention to their typography, and it shows. Proper typography varies based on where the text is and what purpose it serves. Although there are no rules etched in stone, there are a few general techniques that should be followed. Although some of these tips may seem elementary, many of them are not followed.

    Headings.

    Clearly, headings should be larger, by 1 or 2 font sizes, than your body text. You may consider bold, but be cognizant of the letter width. Arial Black, for example, may create letters too fat for your taste. When using colors, be sure the colors contrast well with the background color of your site. Black and dark gray do not contrast well, while black and white (or light gray) work quite well. Sometimes, even a simple color change can create useful headings.

    Also be sure to cascade your headings. A main heading, for example, would be larger than subheadings. This effect creates a sense of emphasis and flow to the information.

    Do not italicize your headings. Italics are meant to underscore particular content, but since the text is a heading and of larger size anyway, italics are redundant and often make the text difficult to read.

    Fonts.

    The default is Times New Roman, which works fine, but many think it is boring. I have experimented with Arial, Georgia and Verdana, and have found Verdana the most readable font face available. This is a personal preference, but fonts should be restricted to the above four to ensure compatibility between all users of your web site. If your user’s browser does not support your font choice, their browser will revert to its default. Since browsers have increased support for CSS, or Cascading Style Sheets, whenever possible, use CSS to define your fonts, rather than HTML’s <font> tag. Also, be sure to keep your font sizes large enough for visitors of all ages and eyesight’s.

    Stress Styles.

    Avoid using all capital letters within your text, as it makes it difficult to read and implies you are shouting at the reader.

    To stress words within your body text, decide on a format and stick with it. Some choose bold, while others choose italics or underline. My personal favorite is italics, but any of these can work well. Be careful when using underline, however, as it can be mistaken for a link. In addition, do not overuse these stress styles.

    Entire body text should not be bold. Bold, like italics, is used to emphasis words, and usually an entire body of copy should speak for itself in regularly styled text. I like to use CSS to space my body text out a little to increase readability.

    Article written by Lee

  • Redirecting To A Different Page Using JavaScrip

    Date: 2011.02.24 | Category: Scripts | Response: 0

    There are times when a simple JavaScript redirection from one page to another can come in handy and, the following JavaScripting will enable you to do this.

    When a page contains this javascript, it will be redirected to another page that you specify in the “window.location=”. You can change the number of refresh seconds by changing the “move()’,1000 to the number of seconds you’d like.

    Example:

    1000 = 1 second
    2000 = 2 seconds
    3000 = 3 seconds

    Place this JavaScript code between the <head> and </head> tags

    <script language=”JavaScript”>
    <!–hide from old browsers
    var time = null
    function move() {
    window.location = ‘http://www.yourdomain.com’
    }
    //–>
    </script>

    Place this JavaScript code in your <body> tag

    <body onload=”timer=setTimeout(‘move()’,1000)”>

    You should now have a page that will redirect to a new url when it loads in the surfers browser window.

    Article written by Lee

  • What’s A CHMOD?

    Date: 2011.02.24 | Category: Hosting, WebDesign | Response: 0

    CHMOD is another name for setting the permissions of files on your server.

    All UNIX based web servers understand the concept of permissions. these are broken down into three distinct areas.

    Permissions for the person who OWNS the file.
    Permissions for the group (all users are members of one or more groups).
    Permissions for everyone else.

    Permissions are listed one of two ways either using numbers such as 755 or, using letters such as rwx-xr-x however they both mean the same thing.

    The first number or first group of three letters stands for the permissions of the owner (IE 7 or rwx).
    The second number or second group of letters stands for the permissions of the group (IE 5 or xr).
    The third number or third group of letters stands for the permissions of everyone else (IE 5 or x).

    The way the system works is as follows:

    1 = x = you are able to execute (run) this program.
    2 = w = you are able to write to this file.
    4 = r = you are able to read the contents of this file.

    so if you add it up rwx = 7.

    So, in the example given above (755 or rwx-xr-x) the owner is allowed to read and write the file AND execute it.
    The group is allowed to execute and write to the file.
    Everyone else can execute the file.

    We hope this gives you a little more insight to how CHMOD’ing or, setting the permissions on your server can affect how files act.

    Article written by Lee

  • Pop Up Consoles Work – To A Point

    Date: 2011.02.24 | Category: Promotion | Response: 0

    As webmasters we are constantly thinking up new ways to generate sales to our sponsors however, the one medium to generating sales that has been and most likely will remain to be popular is the method of using consoles on our sites. Whether these are exit consoles, blur consoles or, on entry consoles one thing holds true, the more consoles you use, the more you annoy your surfer.

    Marketing Console Numbers.

    Through some research of my own i have noticed that a trend appears when the use of consoles on our sites takes effect this trend is that anything after the first console you use actually cuts your chances of making a sale in half, thus, the maximum amount of pop up consoles we should use on our sites, in my humble opinion should be two or three at the very most.

    Console Sales Figures.

    Okay lets take a look at some average (signups per month divided by days in the month) sales figures based on a three month period (sending roughly 10,000 hits per month).

    Average signups to sponsor (A) = 113
    Sales From Console (1) to sponsor (A) = 11
    Sales From Console (2) to sponsor (A) = 2

    The setup above uses pop up consoles in the following manner, on entering the site you get a Blur Console which hides itself behind the current page you are viewing, once you close the current page you see the blur console, once you close the blur console you see a smaller console, once you close the smaller console, the browser window closes altogether.

    Evaluating The Figures.

    From the above figures we can see an immediate pattern, namely that console (1) makes up roughly 10% of our total sales and also that console (2) makes up roughly 20% of console (1) sales. Putting these figures into practice across further consoles will show you that by utilizing any more than 3 consoles on your sites really does not amount to any significant raise in sales unless you send a higher amount of traffic to your sites in the first instance.

    Console Sales – Recap.

    We have now seen that from a steady flow of traffic over a monthly period we can influence the potency of specific consoles within our exit chains and, by analyzing the figures we get from these consoles we can almost certain figure out firstly, the correct (or comfortable) amount of consoles we use on our sites and secondly, that the more consoles we add to our sites, the lower the potential sales figures will be from each subsequent console.

    I will be the first person to admit that overall pop up consoles are an excellent marketing tool however, the figures above show that the more consoles we use, the less chance we have of making a sale further down the chain, use consoles wisely and they will benefit you however, abuse the use of pop up consoles on your sites and not only will be wasting bandwidth, youll be wasting a surfer too.

    Article written by Lee

  • Basic Bookkeeping For Adult Webmasters

    Date: 2011.02.21 | Category: Forms & Contracts | Response: 0

    Knowing how much you are spending on expenses for your online enterprise each month can be a very powerful tool. Taking out that shoe box at the end of the year and giving it to the Accountant is one way. But a very simple bookkeeping system can provide you with exactly how much you made each month after all expenses. In this article I will provide you with the knowledge to setup a simple system to track your revenues and expenses. Not only will you then know exactly what your Net Income or Loss is each month but at the end of the year you will have a nice neat little package to hand your Accountant. Which will result in lower accounting fees at tax time.

    The first thing you need to do is find a way to file all receipts. Your receipts are the backup for all your transactions. Go to your local office supply store and buy an accordion file labeled with monthly slots. Each time you receive a business related receipt, file in correct month. Remember you need to file all your receipts for your numbers to be accurate. When you receive an email receipt for content or hosting print it out and file it. File sponsor cheque stubs, credit card receipts, ISP bill, etc. At the end of each month take out all your receipts and divide into revenue and expenses. Remember you must have a receipt in order to claim the expense. The receipt should show the detail of the purchase, vendor, amounts and date. Ensure that the expenses are needed or used to generate revenue for your business.

    Now the next step depends on how much detail you would like.
    Revenue-Expenses=Net Income or Loss. For a quick snapshot of the month add up the revenue receipts, staple all receipts together and put the total on the front either adding machine tape or handwritten. Repeat with all your expense receipts. You can put a quick summary of the month in a spreadsheet program. Or for a very small investment you can setup a computerized tracking system. I recommend buying a very inexpensive software such as Quicken. Most major banks, credit cards and even paypal are setup to download transactions to Quicken. You can purchase the Personal Finance version of Quicken for around $70. There are several other inexpensive personal finance software packages that you can purchase that will work as just well. But I personally prefer Quicken. The software you choose will have a list of business accounts already setup. For an adult enterprise you will need to customize the account names. This is very easy and quick to do. Add in accounts for content purchase, hosting, isp, traffic purchase, etc.

    Once a week you will open up your program download your transactions from your bank account, credit card, paypal etc. If you have an expense that you pay cash for you will need to add that transaction in. I am assuming that all your sponsor cheques are being deposited into a bank account or paypal. If you receive a check and cash it, manually add the transaction in. After you have finished entering your transactions for the week ensure that the receipts that you have balance to what you have entered in the software.

    You will be amazed at how simple it is to use a software package such as Quicken to track your revenue and expenses. These software packages come with pre-made report tools. Such as income statement, analysis of expenditures, cash flow projections. You can even setup budget numbers for your business.

    If your business consists of a lot of transactions in a month you might want to consider using a bookkeeping/accounting service. There are many online and locally owned businesses that charge a very low rate for doing small business bookkeeping. Remember you don’t need an Accountant to do general bookkeeping. Many small business owners think they need an Accountant to do the monthly bookkeeping. This could result in unnecessary fees. Depending on the size of your enterprise and your passion for numbers sometimes employing a bookkeeper to do the data entry can be a blessing! Most bookkeeping providers will even provide customized reporting based on your needs.

    Article written by Lorna

  • There’s Face Value And Then There Is Real Value

    Date: 2011.02.22 | Category: General | Response: 0

    How often do we sign up to affiliate programs based on their standard terms of service for example, Sponsor A will pay you $35 for every signup you send to them and they tell you they convert at roughly 1:200 whilst Sponsor B will pay you $30 per signup and they convert at roughly 1:200 also, which of these scenarios straight off the bat will make you the most money? Think about your answer first then read on.

    Negotiate The Figures.

    Most, if not all of us would have immediately chosen Sponsor A for the pure fact that they pay you $5 more per signup and they convert at the same rate as Sponsor B however, how many of us would have written or icq’d Sponsor B and asked them to raise their payout? Not many of us I would guess. With that said, what is to stop you from emailing a certain ‘Sponsor B’ if you are able to convert consistently at their published 1:200 and asking for a higher pay rate to continue sending your traffic to them? Nothing at all and, surprisingly enough, I would guess that for most programs, they would actually increase your payout if you have a history with them.

    Haggling The Costs.

    The example above used a sponsor as the main focus however, how many times have you spent money at a content provider? A hosting company? A traffic broker? Have you actually taken a moment to ask these companies if they would give you a lower rate on the services they are providing you with? Again, I bet not many of us have I know it was only recently when I started asking for long term customer discounts and the likes. In fact, from the first point of contact you have with any company online, be they an adult web host, adult traffic broker, content provider or, in fact, an affiliate program, spend an extra few seconds when you first sign up and see how they can improve their service for YOU. To your surprise they might just cut you a deal that is unmatched anywhere else!

    Don’t Undersell Their Products.

    With the above said, one thing that you need to be aware of is that if you start making absurd price cuts from these companies you will probably be told to politely take a running jump however, lets say you were going to be charged $50 for something, ask them if you can get the same service at a 10% discounted rate if you use them again, perhaps not even on the first purchase but on the second, the third, etc.

    By contacting these companies directly and not just going on ‘face value’ even if you only save yourself one or two dollars per purchase over a year those odds and ends soon add up to a nice saving.

    Saving Money – Recap.

    In essence many of us take things at face value whether we are talking to friends and peers or whether we are paying for goods and services but, by at least in asking for a discount on our purchase the worst thing that will happen is that you get told ‘no’ however, on the flipside of the proverbial coin, you might just find yourself a better bargain than you had already found in the first place and that’s some food for thought.

    Article written by Lee

  • Mirroring Adult Sites – Stage Two

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

    Ok, in stage 1 of this tutorial we learnt the basic ‘setup’ for our multisite generation now we have to start putting the rest of our puzzle together.

    At this stage in the tutorial we should now have a 50 pic free site, all of the images are in the appropriate folder on our HD along with the HTML in their own folder. If you have not already done so, you need to ensure that when you add/added the links to your individual HTML pages that you call the images like this:

    /FreeSite/Images/pic1.jpg

    The Thumbnails like this:

    /FreeSite/Images/Thumbs/thumb1.jpg

    The gallery links like this:

    /FreeSite/Galleries/gallery1.html

    And the FPA from the warning page like this:

    /FreeSite/FPA/fpa.html

    Why are we calling the links like this and not like, http://www.mydomain.com/FreeSite/Galleries/gallery1.html I hear you ask, well the answer is simple, in order to use this site TEMPLATE over and over again, we need to ensure that there is a standard way of calling the links, this way, once we decide duplicate this site on a different domain, all we do is upload the folder to our server with a different set of images and we have another set of sites built.

    Ok, we now have our free site but, we have some empty folders that need filling up, here is how we are going to achieve that.

    What we now have to do is re-open the Gallery Pages, DO NOT change the image calls or the thumbnail calls however, what you will need to do is select 15 TGP’s that you would like to submit to, download the recip buttons for these TGP’s and save them in the /FreeSite/Images/Recips/ folder.

    Now we have the gallery pages open we need to modify them like this..

    Take the top text link that you created and replace that with a 3 cell table. In this table for the first gallery, you need to call the first 3 recip links for the TGP’s you want to submit to and link them to the appropriate recip url for each of the TGP’s again, calling the recip images like this, /FreeSite/Recips/recip1.gif. Also, you will need to modify the text link at the bottom of your gallery pages, I would suggest creating an 8 cell table, containing 8 niche text links, four of which should go to your Single-Site FPA’s (as created for the surfer trap) and the remaining 4 text links should go directly to your sponsors site tour page.

    Now save this newly created page as tgp1.html in the /FreeSite/TGP/ folder. Do the above again for the remaining 4 gallery pages but calling a different set of recip links each time. each time you modify a gallery page save it in the /FreeSite/TGP/ folder so gallery2.html would be renamed to tgp2.html, Gallery 3 would be called tgp3.html and so on.

    What you should now have is a single 50 pic free site with 5 galleries of 10 pics, all pics going to the larger image on a HTML page and, 5 TGP galleries.

    This is as far as we go with the tutorial today however, in the next stage we will continue to fill in the rest of the puzzle pieces.

    Article written by Lee

  • Search Engine Optimization, Is It Worth It?

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

    One of the trendiest takes on Internet marketing these days seems to be the notion that securing top search engine rankings “no longer works.” Where it started, I have no idea.

    But rarely does a week go by when I don’t see one or more Internet marketing “experts” claiming that search engine positioning is largely a waste of time and should not be a primary focus of Website owners.

    Well, as the saying goes, “there are two sides to every story.”

    But let’s not make this article about my side, or your side, or anyone else’s side. Let’s forget about my opinion and other “expert’s” opinions and stick to the indisputable facts, as reported by highly credible third party sources:

    According to a Forrester Research Media Field Study, getting a loyal audience in the first place is best done by Search Engine Placement.

    According to a GVU Users Survey, 84.8% of Internet users use Search Engines to find Websites.

    In a study released by ActivMedia Research in September 1999, Search Engine Positioning was ranked as the #1 Website promotional method used by eCommerce sites.

    And look what I just found in the April 2000 issue of Target Marketing Magazine.
    “Top Ways Websites are Discovered”

    Banner ads: 1%

    Targeted email: 1.2%

    TV spots: 1.4%

    “By accident”: 2.1%

    Magazine ads: 4.4%

    Word-of-mouth: 20%

    Random Surfing: 20%

    Search Engines: 46%

    You’ve now seen the numbers and know that search engine promotion is very much alive and kicking. But let’s take this a step further. Let’s talk about the *quality* of prospects coming to your Website through search engines as opposed to other advertising mediums.

    Every time your potential customers use the search engines, they qualify themselves as *hot prospects* by conducting searches on keywords that are directly related to your product or service. Their choice of keywords is proof that they have a genuine interest in what you offer. These people spend their valuable time exploring the search engines for your type of product or service.

    Think About That.

    They didn’t stumble upon one of your ads, or wander past a hyperlink to your site. And they didn’t get a banner ad thrown in their face. They made the *decision* to actively search the keywords that brought them to YOUR Website. And when they get there, they are ready and willing to do business with you. At the very least, they’re seriously considering it and, that’s the most powerful sales tool you can have!

    But merely getting your Website “indexed” or listed in the search engines is not enough. In order to get any significant traffic from the search engines, your Website must be listed within the top 30 search results (preferably the top 20).

    Very rarely will anyone look beyond the first 30 results returned from a search. This makes perfect sense because the most relevant sites are always listed at the top. So if your prospect doesn’t find what they want within the first 20 to 30 listings, they’ll simply do a new search.

    If your site falls anywhere below the 30th listing, you don’t stand a chance against anyone in the TOP-20. Hence, it should be your goal to achieve Top 20 positions.

    How Do You Get Your Website Listed In The Top 20?

    1) You can attempt to gain these Top 20 rankings yourself. However, this can easily become a full time job. (I think this is why so many marketers advise against focusing on search engine positioning.)

    2) You can hire a reputable company who can achieve AND maintain your Top 20 rankings for you (be sure they guarantee their service and have several verifiable clients that currently have multiple Top 20 rankings).

    3) You can do nothing at all. But as you’ve seen from the third party statistics referenced above, search engine positioning is something you can’t afford to ignore.

    Whatever choice you make, I hope that your eyes have been opened to the tremendous profit potential that exists with top search engine placement.

    Article written by Lee

  • Mirroring Adult Sites – Stage Three

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

    So we hit stage three of our tutorial in this stage we are going to make some pages for our top 5 AVS systems. However, as we did in the last tutorial with the new TGP galleries we created we are going to use the same content and same pages that we have already built. On with the tutorial…

    Anyone who build AVS sites will know that you need to have a standard site layout. This usually consists of an entry page (or a warning page), a navigational page (or in our case our menu.html page) and some gallery pages.

    So the first thing we need to do is open up the warning page. Once this page has been opened we now need to do some editing of the page, what I would suggest is moving the warning text to the lower half of the page and at the top making some ‘juicy’ sales text, depending on the niche you are targeting with this site you may also like to add a couple of the original thumbnail images at the VERY top of your page however, these should NOT be linked to the full size image.

    Once you have edited your page to a reasonable standard for the AVS you now need to save this page in the /FreeSite/AVS/ folder that you originally created on your HD. I would suggest saving the page as something like avs1.html or the name of the AVS you will be using this page for.

    Once you have done this you now need to duplicate this page but save it as a different name in again, in the /FreeSite/AVS/ folder so you will end up with avs1.html, avs2.html, etc.

    At the moment these AVS pages have no AVS script on them so, we need to visit the AVS system we are going to be using and fill out the details to have the AVS generate an AVS signup page script for us. Once we have the coding that the AVS provides we now have to place this on our avs1.html page. You should repeat this for each of the AVS’s you wish to use and save each instance of the generated AVS script to a separate AVS*.html page.

    be aware, that when you are putting your information into the AVS to generate the script, you should enter the ‘members area url’ as the page we created for our navigation so, the AVS script location will be /FreeSite/AVS/avs1.html and, the members area page will be, /FreeSite/Menu/menu.html.

    Once you have placed the script on our avs.html pages you should now have the following sites ready:

    1) 50 Pic Free Site With Pics On HTML Pages.
    2) 5 TGP Galleries With Pics On HTML Pages.
    3) 5 AVS Entry Pages.

    Now we are starting to see how using one set of content can amount to a mass of sites all of which can be sending traffic to our sponsors and, to our surfer trap.

    This is where stage three of our tutorial ends however, in our next tutorial we will continue to make some more sites and in an effort to get some traffic we start to play with the ones we have currently created.

    Article written by Lee

  • Thinking Of Starting An Adult Website In The UK?

    Date: 2011.02.24 | Category: General | Response: 0

    We all know that there are many foreign / international adult webmasters and there are some very well known ones based in England however, before you start building your online empire what are the legalities regarding the type of content you can and cant use on your adult pornographic sites?

    To be honest with you, there are no ‘defined’ laws in England (At the time of writing this article) regarding the use of online media to promote adult activities however, it is a commonly held belief that as long as you stay to the same standard as what most ‘top shelf magazines’ or ‘R18 Videos’ have in them you shouldn’t go far wrong.

    So what are these standards? That’s the information that I am about to give you.

    Content that IS NOT acceptable.

    1) Any material which is in breach of the criminal law.

    2) Material (including dialogue) likely to encourage an interest in abusive sexual activity (e.g., pedophilia, incest) which may include depictions involving adults role-playing as non-adults.

    3) The portrayal of any sexual activity, whether real or simulated, which involves lack of consent.

    4) The infliction of pain or physical harm, real or (in a sexual context) simulated. Some allowance may be made for mild consensual activity.

    5) Any sexual threats or humiliation which do not form part of a clearly consenting role-playing game.

    6) The use of any form of physical restraint which prevents participants from withdrawing consent, for example, ball gags.

    7) Penetration by any object likely to cause actual harm or associated with violence.

    8) Activity which is degrading or dehumanizing (examples include the portrayal of bestiality, necrophilia, defecation, urolagnia).

    As you can see from the above, there ARE very specific guidelines regarding water sports, animality and, some of the more ‘out there’ fetishes.

    Now you know what you cant use on your adult sites, lets take a look at the list of sexual activities that you can use. Its no surprise that the list of what you can use is considerably shorter.

    Content that MAY BE acceptable.

    1) Aroused genitalia.

    2) Masturbation.

    3) Oral-genital contact including kissing, licking and sucking.

    4) Penetration by finger, penis, tongue, vibrator or dildo.

    5) Non-harmful fetish material.

    6) Group sexual activity.

    7) Ejaculation and semen.

    It also worth noting that the above guidelines are not distinguished between heterosexual or homosexual activities.

    So, that’s the low down on what the current status of affairs are with regards to the use of adult content on websites in England and Wales. Actually, that’s not to bad just ensure that you stay within these guidelines and, more importantly, that you do consult a solicitor before commencing any form of adult business after all, that’s what they are there for, to give you SOUND legal advice instead of basic ‘guidelines’.

    Article written by Lee

Premium Sponsors















Categories

Site Links