The loss of response is similar.ProgramIn an endless loop, NO content can be refreshed on the webpage, as if it has been loading. This may be a mantisbt bug. There is a saying that the problem will not occur when the PHP version is updated to 5.5.3 or above, this seems to be the case, but I have a PHP version of 5.5.0, which is not very well updated. After a lot of searching materials, this problem is finally solved. At least it seems to be solved by the following method: open the "C: \ Wamp \ www \ mantisbt \ core \ authentication_api.php" file (this path is based on the Wamp Server and varies depending on the deployment method ), change the statement in line 1 from:
$ T_login_methods = array (
MD5,
Crypt,
Plain,
);
Change
$ T_login_methods = array (
MD5,
# Crypt,
Plain,
);
That is, comment out crypt, restart the Wamp service, and click OK on my machine.