This is actually the problem I reported in this thread and for which Nux provided an elegant ammended solution here:
Just let me add where I put the code. Place
Code:
if (stristr($url['host'], ".tk")) // Block the free TLD .tk
$errors[] = 'The TLD .tk is not allowed. Please try again';
after
Code:
if (!$found)
$errors[] = 'The category doesn\'t exist.';
mysql_query("INSERT INTO pl_track (post, time) VALUES ('$proxy', '".time()."')") or die(mysql_error()); //track what people post
$url = @parse_url($proxy);
which should be around line 60 in submit-proxy.php
and you will be fine. Also, you can cut " Please try again" if you want
Bookmarks