Thread: ioACTIVE
View Single Post
Old 02-29-2004, 11:00 PM  
hot_pit
Member
 
Join Date: Nov 2003
Posts: 78
Default ioACTIVE

ioACTIVE to see activity of users on your ftp ...

1) Add This to Your ioFTPD.ini

[Events]
OnFtpLogIn = EXEC ..\scripts\ioACTIVE.exe login

[FTP_Custom_Commands]
activity = EXEC ..\scripts\ioACTIVE.exe activity

[FTP_SITE_Permissions]
activity = 1M

Your Done ...

ohh if you want to display last users on ftp message just add this
%[execute(EXEC ..\scripts\ioACTIVE.exe)(activity 10)] to your Welcome message.... (do this oldino )

Code:
## Display Activity for All Users on FTP

site activity all
200-/------------------------------------------\
200-| user         | date     | time  | logins |
200-|------------------------------------------|
200-| ioFTPD       | 08/03/04 | 17:48 | 103    |
200-| fuscao       | 08/03/04 | 17:39 | 1      |
200-\------------------------------------------/

## Display Activity for a Certain User

site activity ioFTPD
200-/------------------------------------------\
200-| user         | date     | time  | logins |
200-|------------------------------------------|
200-| ioFTPD       | 08/03/04 | 17:48 | 103    |
200-\------------------------------------------/

## User not Found on Activity DB

site activity SomeDude
200-/------------------------------------------\
200-| User not Found                           |
200-\------------------------------------------/

## Display Last X Users Logged in (chronologic order)

site activity 2
200-/------------------------------------------\
200-|      last 2 users loggend in . . .       |
200-|------------------------------------------|
200-| user         | date     | time  | logins |
200-|------------------------------------------|
200-| ioFTPD       | 08/03/04 | 17:48 | 103    |
200-| fuscao       | 08/03/04 | 17:39 | 1      |
200-\------------------------------------------/

## Display Help for ioACTIVE

site activity
200-/--------------------------------\
200-|          ioACTIVE v1.1         |
200-|--------------------------------|
200-| Usage : site activity all      |
200-| Usage : site activity <user>   |
200-| Usage : site activity <number> |
200-\--------------------------------/
download it here : http://www.ioftpd.com/scripts/script.php?id=50
hot_pit is offline   Reply With Quote