WoGuziczek |
10-14-2010 06:26 PM |
1 Attachment(s)
REAL LINK CHECKER
Check this ;) :
Don't change bbcode_code template or revert current (if you modified)
in includes/class_bbcode.php find:
PHP Code:
function handle_bbcode_code($code)
{
global $vbulletin, $vbphrase, $stylevar, $show;
// remove unnecessary line breaks and escaped quotes
$code = str_replace(array('<br>', '<br />'), array('', ''), $code);
$code = $this->strip_front_back_whitespace($code, 1);
if ($this->printable)
{
$code = $this->emulate_pre_tag($code);
$template = 'bbcode_code_printable';
}
else
{
$blockheight = $this->fetch_block_height($code);
$template = 'bbcode_code';
}
eval('$html = "' . fetch_template($template) . '";');
return $html;
}
replace with:
PHP Code:
function check_link($url)
{
$url = urldecode($url);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://mirrorchecker.com/linkchecker2.php?url=" . $url);
curl_setopt($ch, CURLOPT_USERAGENT, 'Googlebot/2.1 (+http://www.google.com/bot.html)');
curl_setopt($ch, CURLOPT_REFERER, 'http://www.google.com');
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$data = curl_exec($ch);
curl_close($ch);
if (preg_match('/\<font\ color\=green\>\<h1\>File\ Available\ \@\ .*\<\/h1\>\<\/font\>/sm', $data)
OR preg_match('/File\ Available/sm', $data)) {
return true;
}
return false;
}
function handle_bbcode_code($code)
{
global $vbulletin, $vbphrase, $stylevar, $show;
$codeLinks = explode("\n", $code);
$code = '';
foreach($codeLinks as $i => $link)
{
if ($this->check_link($link))
{
$code .= $link . " - <font color=\"green\"><b>Checked & works</b></font>\n";
}
else
{
$code .= $link . " - <font color=\"red\"><b>Doesn't work</b></font>\n";
}
}
$code = str_replace(array('<br>', '<br />'), array('', ''), $code);
$code = $this->strip_front_back_whitespace($code, 1);
if ($this->printable)
{
$code = $this->emulate_pre_tag($code);
$template = 'bbcode_code_printable';
}
else
{
$blockheight = $this->fetch_block_height($code);
$template = 'bbcode_code';
}
eval('$html = "' . fetch_template($template) . '";');
return $html;
}
Screen in attachment ;)
|