PDA

View Full Version : site dupe Error


sablord
05-13-2008, 05:58 AM
05-12-2008 12:44:07 "..\scripts\nxTools\nxDupe.tcl" terminated abnormally
--------------------------- ErrorInfo ----------------------------
expected integer but got ""
while executing
"clock format $values(TimeStamp) -format {{%S} {%M} {%H} {%d} {%m} {%y} {%Y}} -gmt [IsTrue $misc(UtcTime)]"
invoked from within
"DirDb eval "SELECT * FROM DupeDirs WHERE DirName LIKE '$pattern' ESCAPE '\\' ORDER BY TimeStamp DESC LIMIT $limit" values {
incr count
..."
(procedure "SiteDupe" line 14)
invoke


I hope someone can help me.

zonp_
05-13-2008, 07:04 AM
there is a problem in latest beta 1.2.0 when using site rebuild, it doesn't seem to set timestamp (field is NULL) for DupeDirs.db.
as a quickfix you can set a default timestamp for those entry using the following SQL lines in an sqlite editor.

UPDATE DupeDirs
SET TimeStamp = '0'
WHERE TimeStamp IS NULL

sablord
05-13-2008, 07:35 AM
Thx for this Tip