Quote:
Originally Posted by Dr.LoVe
i didn't do anything just add my website link look here
And another thing if you don't mind could you tell me when should i upload those files ?
( public_html or vb file )??
thanx
|
It's nothing much wrong, only that you have to use the right single quotes

. Here is the fix :
PHP Code:
<?
//List of Search Engine Agents
$UserAgent = array(
'Googlebot',
'msnbot',
'slurp',
'fast-webcrawler',
'Googlebot-Image',
'teomaagent1',
'directhit',
'lycos',
'ia_archiver',
'gigabot',
'whatuseek',
'Teoma',
'scooter',
'Ask Jeeves',
'slurp@inktomi',
'gzip(gfe) (via translate.google.com)',
'Mediapartners-Google',
'crawler@alexa.com'
);
//Your forum *domain only*
//Define domain with and without www
//Do not add trail at the end
//Example : 'google.com' , 'www.google.com'
$Forum_domain = array(
'http://xxxx.com',
'http://www.xxxxx.com',
);
//2nd Layer Flood Protection enable ?
//1 to enable , 2 to disable
$config['dnp_firewall_2nd_layer'] = 1 ;
//Amount of time in second to show restrict message if a Flooding attack is determined
$config['dnp_firewall_wait_time'] = 10 ;
//Amount of penalty to be considered a Flooding attack.
//Every time multiple requests sent to the forum in less than few a second, penalty count increased by 1.
$config['dnp_firewall_penalty_allow'] = 6;
?>