i found this on web and this hack is for invidionize boards but can we use it for vbulletin too??
Quote:
2. Open up functions.php
3. Find:
----------------------------------------------------------
if ($ibforums->vars['ban_ip'])
{
$ips = explode( "|", $ibforums->vars['ban_ip'] );
foreach ($ips as $ip)
----------------------------------------------------------
4. Before add:
----------------------------------------------------------
// Check to see if the banned cookie is set
if ($std->my_getcookie('banned')) {
$std->Error( array( 'LEVEL' => 1, 'MSG' => 'you_are_banned', 'INIT' => 1 ) );
}
----------------------------------------------------------
5. Find:
----------------------------------------------------------
$ip = preg_replace( "/\*/", '.*' , preg_quote($ip, "/") );
if ( preg_match( "/^$ip/", $ibforums->input['IP_ADDRESS'] ) )
{
----------------------------------------------------------
6. Below add:
----------------------------------------------------------
if(!$std->my_getcookie('banned')) {
$std->my_setcookie('banned', 'yes');
}
----------------------------------------------------------
|
with all this information cant we figure out anything at all???