With v4.5.4.2 of NxCloud, we separated operator traffic data space from the main traffic data space. This is for operator GUI speed up. As a result, your operator will not be able to view their old traffic log on 'Logging > Request'. If you want let them view their old traffic data, you need to modify '/nxcloud/webapps/zop,logging.request.jsp' file.
In the JSP file, change the following line,
to
Then it will use main traffic data space. After several days, when the new operator traffic data space has enough data then you can undo the change to use ZopRequestDao again.
** We decided not to copy the old traffic data to the new data space as it may take too long time. You don't want to wait that long to finish the update if it's a production server.
In the JSP file, change the following line,
Code:
ZopRequestDao dao = new ZopRequestDao(getAdminName());
Code:
RequestDao dao = new RequestDao(getAdminName());
** We decided not to copy the old traffic data to the new data space as it may take too long time. You don't want to wait that long to finish the update if it's a production server.