I pull this information from the
Detail information about DnP Firewall 2nd Layer Protection for you. Though it is titled as Advanced, it is not very hard to do
Quote:
Advanced
The 2nd Layer protection also sports one hidden setting that is not shown in config file. This setting is for how long it should take before clear out the penalty count.
Open dnp_fw.php and find
PHP Code:
if((time() - $_SESSION['dnp_firewall_last_request_timestamp']) > 10 ){
Change 10 to a different amount of time client does not send any request (in seconds) then 2nd layer should reset the penalty count to 0.
Example : 3 or 4 seconds would be fine.
PHP Code:
if((time() - $_SESSION['dnp_firewall_last_request_timestamp']) > 4 ){
|
In your case any value from 2-5 would work, also depends on how fast other ajax mods refresh themselves :erm: