PDA

View Full Version : nxTools v1.0.3


neoxed
04-05-2006, 07:38 PM
Changes:
NEW: Display pre areas on multiple lines if necessary (word wrapping).
NEW: SITE SEARCH, same as SITE DUPE but with simpler output.
CHG: Updated nxHelper to v2.3.0, new global-interp key functions.
FIX: Possible crashes using "SITE OPEN/CLOSE" due to ioFTPD's buggy global-interp "var get/set" command.
FIX: The unnuke command failed when unnuking a directory without a nuke prefix.
FIX: Update the nuke record for the new and old directory names if the rename fails.
Download:

http://www.inicom.net/pages/en.ioftpd-scripts.php?id=78

neoxed
04-20-2006, 05:06 PM
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:
round(sum(Files)) AS Fileswith:
CAST(SUM(Files) AS INTEGER) AS Files