This document explains how to modify the frequency of security checks performed by Zero Site Protector by modifying the HUMAN_SECURITY_EXPIRED variable in the zero-site-protector.php file.

By default, security checks are performed every 30 seconds (30000 milliseconds). To change this interval, simply modify the value of the HUMAN_SECURITY_EXPIRED constant. For example, to perform security checks every 60 seconds, you would change the value to 60000.

// By default it is in milliseconds, this affects how often the security check is done, default is 30 seconds
define("HUMAN_SECURITY_EXPIRED", 30000);

It is important to note that setting the interval too high may increase the risk of security breaches, while setting it too low may cause issues with website performance and inconvenience for visitors who may have to constantly complete verification. It is recommended to find a balance that works for your specific website and use case.