It was brought to my attention that "SITE PRE STATS" no longer works. The latest version of SQLite changed the behavior of the SUM() command. All sums are returned as floating point, even if the operation is performed on a column of integers.
Open nxPre.tcl in your favourite text editor and replace:
Quote:
round(sum(Files)) AS Files
|
with:
Quote:
CAST(SUM(Files) AS INTEGER) AS Files
|