Log in

View Full Version : Restrict to 18+ ?


trackpads
01-16-2005, 03:52 PM
Is there a way to change the COPPA age check during registration to instead block anyone under the age of 18?

Thanks in advance,

-Jason

blackpheonix
01-16-2005, 06:06 PM
This hack requires you to edit the register.php in your forum root directory.

open register.php

Find

if ($year < ($current['year'] - 13) OR ($year == ($current['year'] - 13) AND $month <= $current['month']))


Replace with

if ($year < ($current['year'] - 18) OR ($year == ($current['year'] - 18) AND $month <= $current['month']))


then that should do it

you may also want to change some of the coppa variables if you got admincp=>languages & phrases=>search in phrases.

type coppa in the search box then in the search in... section click Phrase Text and Phrase Variable Name

and this will bring up the coppa variables :)

hope this is of some help

trackpads
01-17-2005, 03:20 AM
Thanks!!!!

blackpheonix
01-17-2005, 11:46 AM
no problem :)