File: _referer_spam.page.php

package info (click to toggle)
b2evolution 0.9.2-3
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 12,976 kB
  • ctags: 5,460
  • sloc: php: 58,989; sh: 298; makefile: 36
file content (35 lines) | stat: -rw-r--r-- 1,581 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
 * This page displays an error message when we have detected referer spam.
 *
 * b2evolution - {@link http://b2evolution.net/}
 * Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
 * @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
 *
 * @package evocore
 */

header('HTTP/1.0 403 Forbidden');
?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 		<title>403 Forbidden - Please stop referer spam.</title>
	</head>
	<body>
		<h1>403 Forbidden</h1>
		<h2>Please stop referer spam.</h2>
		<p>We have identified that you have been refered here by a known or supposed spammer.</p>
		<p>If you feel this is an error, please <a href="<?php echo $ReqURI ?>">bypass this message</a>
		and leave us a comment about the error. We are sorry for the inconvenience.</p>
		<p>If you are actually doing referer spam, please note that this website/b2evolution no longer records and publishes referers. Not even legitimate ones!
		While we understand it was fun for you guys while it lasted, please understand our servers cannot take the load of
		all this cumulated spam any longer... Thank you.</p>
		<p>Also, please note that comment/trackback submitted URLs will be tagged with rel="nofollow" in order to be ignored by search engines.</p>
  </body>
</html>
<?php
	debug_info();
 	exit;
?>