PDA

View Full Version : script error


puertoblack2003
09-29-2007, 02:43 AM
ok guys need some help everytime i click on a lick this what pops up


input->clean_array_gpc('r', array( 'interceptedURL' => TYPE_STR )); $url = $vbulletin->GPC['interceptedURL']; $urlcheck = @parse_url($url); $urlcheckport = intval($urlcheck['port']); $urlcheckhost = $urlcheck['host'] . (!empty($urlcheckport) ? ":$urlcheckport" : ''); $homeurl = @parse_url($vbulletin->options['homeurl']); $homeurlport = intval($homeurl['port']); $homeurlhost = $homeurl['host'] . (!empty($homeurlport) ? ":$urlcheckport" : ''); $homeurlhost = str_replace('www.', '', $homeurlhost); $urlcheckhost = str_replace('www.', '', $urlcheckhost); $correcturl = str_replace('interceptedURL=', '', $_SERVER['QUERY_STRING']); if ($homeurlhost==$urlcheckhost) { exec_header_redirect($correcturl); } else { $urlchecked = $correcturl; $navbits[''] = $vbphrase['vbulletin_message']; // make navbar $navbits = construct_navbits($navbits); eval('$navbar = "' . fetch_template('navbar') . '";'); eval('print_output("' . fetch_template('RLI_error_message') . '");'); } ?>


can anybody assist me thanks -pb

Dismounted
09-29-2007, 05:43 AM
This is caused by a modification, disable each modification one by one to see which one is the problem.

puertoblack2003
09-29-2007, 09:32 AM
This is caused by a modification, disable each modification one by one to see which one is the problem.

thanks dismounted i found out which one caused it, It just happened out of the shadow, it was that 'Remote Links Interceptor' hack.

pb