DumpZ
I was wondering which SFV checker everyone uses for serv-u.

I always used JAcheck but the message is a bit to big

CODE

226-.---------------------------[JAcheck]-----------------------------.
226-| Check Result            | Files    | Percent | Progress         |
226-|-------------------------+----------+---------+------------------|
226-| SFV file CHECKED        | 0-of-47  |      0% | ++++++++++       |
226-:-------------------------+----------+---------+------------------:
226-.-------------------------[Upload Stats]--------------------------.
226-| Filename                              | Size        | Speed     |
226-|---------------------------------------+-------------+-----------|
226-| prd-swat1.sfv                         | 1 KB        | 3 KB/s    |
226-:---------------------------------------+-------------+-----------:
226 Transfer complete.


So im looking for a checker which has an smaller message.

I downloaded t-exec today but i didn't got i working jet.

So are there more SFV checkers for serv-u and what are your experinces with them
Joc00
I use t-exec. Had always worked for me and simple to install. Edit t-exec.ini to your liking and add this to ini

[EXTERNAL]
EventHookDLL1=T-EXEC.DLL
EventHookDLL2=filter.dll

No big messages. Just Dir [100%]-[Complete]-1_Files-[Msg]
da_cash
i use irc-U . it check the sfv files and notify irc users about new up/dl releases.


DumpZ
IRC-U only show the stats in IRC and i also want to see them in flashFXP
Alexander01
t-exec has a lot of crash problems.. it don't support long usernames and sometimes the cpu will be 100% and the messages files created will be in GB's :S

anyone knows this problem and know what to do to stop this?
The Doom Master
i am using Jacheck simple to Use
need two files
.dll / .ini
and in the Serv ini file

[EXTERNAL]
EventHookDLL1=JAcheck.dll

works on all Serv-U Versions

and can be setup easly on it Ini file.. biggrin.gif
DCLXVI
i use SUX , very good servu addon by PSY

Sux is a plugin for the ServU Ftp Server.
It allows you to use new tags in your login and chdir messages,
like top uploader and downloader statistics.
It adds an request and dupe check system to your server.
you get access to advanced site cmd's like an process viewer+killer,
and more...


http://www.tnbp.org/sux/
cougar
sameone i use smile.gif. SUX is very easy to use and it looks nice also.
DumpZ
SUX looks nice.

Thanks!!
FTPServerTools
I use ServuEvent.dll and FTPLogger.exe from http://ftpservertools.tripod.com
ServuEvent.dll is kind of an advanced texec.dll.
l0c0
Well im also use Jacheck, simple 2 use biggrin.gif
PeOun
if u have a C++ compiler u can change messages of JAcheck, just edit it in sources and compile it smile.gif
Killaloop
QUOTE (PeOun @ Apr 9 2004, 06:51 AM)
if u have a C++ compiler u can change messages of JAcheck, just edit it in sources and compile it smile.gif

I didn't know that jacheck is opensource since their site went offline while ago.
would for sure like to take a look.
would be nice if you could post the source here
tianzhen
whipped up a quick one for the "Uploaded by" script. It appends the filename, size, upped by, and transfer rate to the folder.message file in each folder. if the folder.message file does not exist it creates it.



Option Explicit

function Client_OnUploadEnd( filename, bytes, transferRate, starttime, endtime, errcode, crc32 )
Dim fso, parentfolder, messagepath, parentlen, filenamelen, totallen, filetxt, upuser
Set fso = CreateObject("Scripting.FileSystemObject")
upuser = Client.Username
parentfolder = fso.GetParentFolderName(filename)
messagepath = parentfolder & "\folder.message"
parentlen = Len(parentfolder)
totallen = Len(filename)
filenamelen = totallen - parentlen - 1
If fso.fileExists(messagepath) Then
Set filetxt = fso.OpenTextFile(messagepath, 8, True)
filetxt.WriteLine("| " & Right(filename,filenamelen) & " (" & round(bytes/1024/1024, 2) & " MB) upped by " & upuser & " at " & transferRate & " KB/s")
filetxt.Close
Else
Set filetxt = fso.CreateTextFile(messagepath)
filetxt.WriteLine("| Upload History")
filetxt.WriteLine("| -------------------------")
filetxt.WriteLine("| " & Right(filename,filenamelen) & " (" & round(bytes/1024/1024, 2) & " MB) upped by " & upuser & " at " & transferRate & " KB/s")
filetxt.Close
End If
end Function
Mozzi
Jacheck is good, irc-u shows only in irc that`s bad 4 me
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.

 
Invision Power Board © 2001-2005 Invision Power Services, Inc.