Mobile app version of vmapp.org
Login or Join
Angela700

: Is warning users on the homepage enough to limit access to 18+ for a website with adult content on it? I want to build a website that has 18+ content on it. Doesn't matter if it's alcohol,

@Angela700

Posted in: #AdultContent #Legal #WebDevelopment

I want to build a website that has 18+ content on it. Doesn't matter if it's alcohol, tobacco or some adult content on it. Point is that it needs to be done to be available only for 18+.

The most easiest way that I figure is to put a basic index.html file with intro note saying something like "Are you old enough to enter" or "This site has 18+ content. Enter if you are 18+".

Is just warning on this intro site enough or is there some common practice that should be done on that subject?

For example, if someone is let's say 16 y.o. he or she can easily click that he or she has 18+ and enter the site. Is there any way to lower this situation on minimum, or is just a notice on the intro page that is enough?

10.06% popularity Vote Up Vote Down


Login to follow query

More posts by @Angela700

6 Comments

Sorted by latest first Latest Oldest Best

 

@Bryan171

I'm leaving the legal part to others, I'm replying about the implementation:

Using an index.html is a terrible idea. Say you website has pages indexed somewhere, or some forum has a few backlinks. If they where to link to example.com/some-page(.html), they would never see the warning.

Use PHP (or another language which can store sessions), and if !isset($_SESSION['userClickedYesAdult']) show question, otherwise show requested page.

10% popularity Vote Up Vote Down


 

@Michele947

Also: study the html of other adult websites hosted in the same geographical location as your host.

See what they do to label their content as adult, so parental controls can pick it up and prevent unintended access by minors. Also visit the websites of parental control products like NetNanny, and follow their advice.

It won't keep out determined minors, but together with a first-visit-based notification and compliance with local law where your website is hosted, you should be good.

Also see whether the laws differ between where the website owner lives and where the website is hosted. The owner is likely to be held responsible according to applicable law.

10% popularity Vote Up Vote Down


 

@Nickens628

What an interesting question.

It all depends on how you expect the users to use your site:

If you want users to visit your adult site for a minute just to get one or two things, then at the very least, have the users read an agreement, then verify they read it by having them answer a skill-testing question that adults can only understand and then if successful, make the server send a cookie to the client browser so the client is then authorized to access the site.

If you expect users to do more involved actions on your site (like adult item shopping as opposed to looking at one and only one picture), then you could require users to create accounts then make them verify their email address and require them to send a recent photo of themselves.

Point is, just make sure users are verified as adults and when they are, the server can send a special cookie to the user's browsers to identify them as adults.

Having all html adult pages public including the index html page as a warning page isn't good enough because if an adult enters the site and is greeted with the index page and decides to declare himself as an adult, he is then taken to the next page on the site. He could tell a kid the new URL and the kid could type it in and BAM! kid sees adult content.

You will need to learn some kind of programming language such as PHP if you want to be able to run this kind of site successfully.

And whatever you do, don't think about getting the adult portions of the site indexed with google or any search engine unless you make the pages family-friendly enough for google.

10% popularity Vote Up Vote Down


 

@Gretchen104

There is no way to do ensure someone is over 18 without additional work (either from you or the viewer or both).

Having people register and require scanned ID or similar could work, as could require entry of a valid credit card number to create an account. Neither of these are anywhere close to fullproof, but they significantly raise the bar in terms of reducing your liability if someone under-age does view the content, but similarly will turn off a lot of casual potential viewers.

I note that different countries have different laws - its probably not practical to comply - or even try to comply with them all - that said, hosting in a different, liberal, jurisdiction may offer some (practical) protections to you.

10% popularity Vote Up Vote Down


 

@Jennifer507

I'll give you a simple answer. Yes. Legally, just the notice would help you out of the trouble. But, if you need to verify their identity, the solution would go complex. To either get a video or webcam snap, check for age using image recognition etc.

10% popularity Vote Up Vote Down


 

@Kevin317

This is not legal advice, but I know someone who runs several adult sites. He puts up the warning page with the 18 U.S.C. Section 2257 Compliance Notice and that's it.

I'm not sure there is a way to verify a users age when they are underage.

Obviously this is not enough, the parents may have to employ tools to prevent access.

The site owner has no other option from my experience.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme