Home Reglas Inscribete Codigos Dark Designs Miembros Extra
Inscribete

Llena el siguiente formulario. (No Enviar el Formulario mas de una vez Por Favor)

The text you entered didn't match the image, please try again.

"; include('footer.php'); exit; } if (isset($_SESSION['key']) && isset($_COOKIE[session_name()])) { setcookie(session_name(), '', time()-36000, '/'); $_SESSION = array(); session_destroy(); } } else { echo "

The text you entered didn't match the image, please try again.

"; include('footer.php'); exit; } } include_once('header.php'); // check to make sure it's not a known bot $bots = "/(Indy|Blaiz|Java|libwww-perl|Python|OutfoxBot|User-Agent|PycURL|AlphaServer|T8Abot|Syntryx|WinHttp|WebBandit|nicebot)/i"; if (preg_match($bots, $_SERVER['HTTP_USER_AGENT']) || empty($_SERVER['HTTP_USER_AGENT']) || $_SERVER['HTTP_USER_AGENT'] == " ") { echo "

Tests on your application indicate that there's a high possibility it is spam. This means it hasn't gone through. If you genuinely want to join this fanlisting, please contact the owner.

"; exit(include('footer.php')); } if (substr_count($_POST['comments'], 'http://') > 1) { echo "

Too many URLs; we've assumed you're spam and 'lost' your application. Please try again without any extra URLs if you're a geniune person. \n

"; exit(include('footer.php')); } $exploits = "/(content-type|bcc:|cc:|document.cookie|onclick|onload|javascript|alert)/i"; if (filesize(SPAMWDS) > 0) { $spamlist = file(SPAMWDS); } foreach ($_POST as $key => $val) { if (isset($spamlist)) { foreach ($spamlist as $spamword) { if (preg_match("/(".trim($spamword).")/i", $val)) { echo "

Your join application contains words in the spam list, please go back and remove references to obvious 'spam' material. \n

"; exit(include('footer.php')); } } } if (preg_match($exploits, $val)) { echo "

No meta injection, please. \n

"; exit(include('footer.php')); } if (preg_match("/(<.*>)/i", $val)) { exit("

No HTML please!

"); } $clean[$key] = cleanUp($val); } // set default values for empty/unset fields if (empty($clean['dispemail'])) { $clean['dispemail'] = "no"; } if (!isset($favefield) || $favefield == "no" || !isset($clean['fave'])) { $clean['fave'] = NULL; } // let's do some security and spam checks if (empty($clean['name']) || empty($clean['email']) || empty($clean['country'])) { $error_msg .= "Name, e-mail and country are required fields. \n"; } elseif (!ereg("^[A-Za-z' -]",$clean['name']) || strlen($clean['name']) > 15) { $error_msg .= "That name is not valid. Your name must contain letters only, and must be less than 15 characters. \n"; } elseif ($clean['dispemail'] != "yes" && $clean['dispemail'] != "no") { $error_msg .= "

You didn't choose whether or not you'd like to show your e-mail address on the member list. \n"; } elseif ($clean['fave'] != "" && (!ereg("^[A-Za-z0-9', -]", $clean['fave']) || strlen($clean['fave']) > 20)) { $error_msg .= "Your chosen \"favourite\" is not valid. It must contain letters and numbers only, and must be less than 20 characters. \n"; } elseif (!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,6})$",strtolower($clean['email']))) { $error_msg .= "The email address you have used is not valid. \n"; } elseif ($clean['country'] == "null" || (filesize(COUNTRIES) > 0 && checkTXTfile(COUNTRIES, $clean['country'], "country") === false)) { $error_msg .= "Please select a valid country. \n"; } elseif (filesize(IPBLOCKLST) > 0 && checkTXTfile(IPBLOCKLST, $_SERVER['REMOTE_ADDR'], "ip") === true) { echo "

Your IP is in the block list, that means you're not allowed to join at this time. \n

"; exit(include('footer.php')); } elseif (filesize(NEWBIES) > 0 && checkTXTfile(NEWBIES, breakEmail($clean['email']), "email") === true) { echo "

You're already in the pending queue, you can't join twice!

\n"; exit(include('footer.php')); } elseif (filesize(MEMBERS) > 0 && checkTXTfile(MEMBERS, breakEmail($clean['email']), "email") === true) { echo "

You're already a member of the fanlisting, you can't join twice!

\n"; exit(include('footer.php')); } if ($error_msg == NULL) { $show_form = false; // let's clean up the input and get things looking tidy $clean['name'] = ucwords(strtolower($clean['name'])); if (!empty($clean['url']) && !ereg("^http://",$clean['url'])) { $clean['url'] = "http://" . $clean['url']; } // attempt to break email to piss off spammers :p $clean['email'] = breakEmail(strtolower($clean['email'])); // send off some emails if ($emailnewbies == "yes") { $subject = "Thank you for joining $title"; $message = $thanksjoinMsg; $message .= "Name: {$clean['name']} \n"; $message .= "Email: " . fixEmail($clean['email']) . " \n"; $message .= "URL: {$clean['url']} \n"; $message .= "Country: {$clean['country']} \n"; if (isset($favefield) && $favefield == "yes") { $message .= "$favetext: {$clean['fave']} \n"; } $message .= "Comments: {$clean['comments']} \n\n"; if (strstr($_SERVER['SERVER_SOFTWARE'], "Win")) { $headers = "From: $admin_email \n"; $headers .= "Reply-To: $admin_email"; } else { $headers = "From: $title <$admin_email> \n"; $headers .= "Reply-To: <$admin_email>"; } mail(fixEmail($clean['email']),$subject,$message,$headers); } if ($emailadmin == "yes") { $subject = "New member at $title"; $message = "There's a new member at your $FLsubject fanlisting with the following details: \n\n"; $message .= "Name: {$clean['name']} \n"; $message .= "Email: " . fixEmail($clean['email']) . " \n"; $message .= "URL: {$clean['url']} \n"; $message .= "Country: {$clean['country']} \n"; if (isset($favefield) && $favefield == "yes") { $message .= "$favetext: {$clean['fave']} \n"; } $message .= "Comments: {$clean['comments']} \n"; $message .= "IP: {$_SERVER['REMOTE_ADDR']} \n\n"; $message .= "Manage members: {$FLurl}/admin.php?ap=manage_members&s=newbies"; if (!strstr($_SERVER['SERVER_SOFTWARE'], "Win")) { $headers = "From: $admin_email \n"; $headers .= "Reply-To: " . fixEmail($clean['email']) . ""; } else { $headers = "From: $title <$admin_email> \n"; $headers .= "Reply-To: <" . fixEmail($clean['email']) . ">"; } mail($admin_email,$subject,$message,$headers); } // add the member to the newbies txt file if (addmember("$clean[name],$clean[email],$clean[dispemail],$clean[url],$clean[country],$clean[fave]\n")) { echo "

Thank You

\n

Thank you for joining $title, the fanlisting for $FLsubject!

"; } else { echo "

Oh Dear!

\n

Your application could not be added at this time. Please contact the owner of the fanlisting for help.

"; } } } if (!isset($_POST['submit']) || $show_form == true) { require_once('prefs.php'); include_once('header.php'); function get_data($var) { if (isset($_POST[$var])) { echo cleanUp($_POST[$var]); } } ?>

Join the Fanlisting

To join the fanlisting, fill in your details below. Please do not use this form to update; use the update form instead.

(Name, E-mail and Country are required fields.)

ERROR:
"; echo nl2br($error_msg) . "

"; } if (isset($_POST['country'])) $country = $_POST['country']; else $country = NULL; ?>


" />

" />

Yes No

" />



" />





Free counter and web stats