I have been configuring Bugzilla for the past few days and it is very troublesome. Later I saw an article about mantis in netcobra, which was very inspired and easily succeeded in configuration. After using it, I feel that the function is still good, that is, the interface is slightly worse. In addition, the support for Chinese is not very good. Even if I select a Chinese language, there are still many places where it is in English. (Garbled characters exist in some places. For example, "delete" may be ". H Division ")
However, Mantis is enough for our company. Thank you, netcobra!
In addition, we found a problem today: When opening a dialog box using JavaScript, we can execute page_load for the first time, but do not execute page_load every time the dialog box is displayed twice.
This is because the dialog box page has been cached on the server. Use the following in page_load:CodeSolution:
Response. cache. setnoservercaching ();
Response. cache. setcacheability (system. Web. httpcacheability. nocache );
Response. cache. setnostore ();