Go Back   FlashFXP Forums > > > >

bounty's scripts BQUOTA, NEWDIR, BTRIAL, OCSCRIPT, VERSION SCRIPT, IMDB.TCL

Reply
 
Thread Tools Rating: Thread Rating: 3 votes, 3.67 average. Display Modes
Old 10-30-2003, 04:18 AM   #106
jannat
Junior Member
 
Join Date: Jul 2003
Posts: 19
Default

ok, i've checked a few things.
the newdir.log is not updating
also the new.msg (is this one used in newdir 3.x at all ?) is not up-to-date

could there be a prob with the sections ?
are they used like in 2.x ?
jannat is offline   Reply With Quote
Old 10-30-2003, 04:39 AM   #107
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default

Quote:
Originally posted by Optixxx
***********************************************

Bounty

nice work,but i really dont like file duping
lots of ppl also have problems with file duping

is ther an option 0/1 for duping/non-duping files?


cheers
yes i'm busy to add disable settings for dupe files/dirs and also for check ban files/dirs

it will be out later today

have fun
bounty
bounty is offline   Reply With Quote
Old 10-30-2003, 04:42 AM   #108
Zer0Racer
Senior Member
ioFTPD Scripter
 
Join Date: Oct 2002
Posts: 703
Default

Quote:
Originally posted by Optixxx
***********************************************

Bounty

nice work,but i really dont like file duping
lots of ppl also have problems with file duping

is ther an option 0/1 for duping/non-duping files?


cheers
Very easy. Since newdir script makes it's logs from OnNewFtpDir event you can quickly determine that dupefile.log comes from OnUploadComplete (after every file uploaded).

Solution: Don't add the OnUploadComplete from newdir install txt to ioFTPD.ini

Code:
[Events]
OnUploadComplete = TCL ..\scripts\newdir\OnUploadComplete.itcl
If you check inside that .itcl you see this comment: # add file to DUPEFILE.LOG
Zer0Racer is offline   Reply With Quote
Old 10-30-2003, 05:30 AM   #109
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default NEWDIR 3.0.2 OUT

here we go m8s

sorry for all theses fast updates

DL link & changelog in the 1st post

have fun
bounty
bounty is offline   Reply With Quote
Old 10-30-2003, 12:44 PM   #110
ddeca
Member
ioFTPD Foundation User
 
Join Date: Aug 2003
Posts: 73
Default baahh.. make me crazy

Dont know if I am just stupid but i cant make any of these 3.0 version work..

nothing on SITE NEW
nothing in NEWDIR.LOG

//ddeca
ddeca is offline   Reply With Quote
Old 10-30-2003, 01:38 PM   #111
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default newdir 3.0.2 & -nocase

ok m8s i removed the -nocase for banfile & bandir checks coz i needed for my own

since some ppl prefer working with -nocase here is the modif you can make


for files open OnPreStor.itcl

# check banfile.cfg to deny STOR
find line : if { [string match $line $filename] == 1 } {
replace by : if { [string match -nocase $line $filename] == 1 } {


for dirs open OnPreMkd.itcl

# check bandir.cfg to deny MKD
find line : if { [string match $line $dirname] == 1 } {
replace by : if { [string match -nocase $line $dirname] == 1 } {

or just download the new version 3.0.3

have fun
bounty
bounty is offline   Reply With Quote
Old 10-30-2003, 01:41 PM   #112
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default Re: baahh.. make me crazy

Quote:
Originally posted by ddeca
Dont know if I am just stupid but i cant make any of these 3.0 version work..

nothing on SITE NEW
nothing in NEWDIR.LOG

//ddeca
hmmm did you read all readme txt files?
are you sure your ftp structure looks like exemple 1 or 2 ?
did you updated the logs to v3.x ?
did you installed all files properly ?

let me know
bounty.
bounty is offline   Reply With Quote
Old 10-30-2003, 04:49 PM   #113
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default newdir v3.0.3

and once again
sorry for all these updates

but it's needed

DL link & changelog on 1st post

have fun
bounty
bounty is offline   Reply With Quote
Old 10-31-2003, 06:39 AM   #114
schmacko
Junior Member
 
Join Date: Jun 2003
Posts: 19
Default

im guessing ur undupe is diff... is there a way to do a public undupe plz bounty?
schmacko is offline   Reply With Quote
Old 10-31-2003, 06:52 AM   #115
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default

Quote:
Originally posted by schmacko
im guessing ur undupe is diff... is there a way to do a public undupe plz bounty?
yes it's in my todo list
it will probably be implemented in next dzsbot rls
bounty is offline   Reply With Quote
Old 11-02-2003, 07:14 AM   #116
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default newdir v3.0.4

here we go m8s

a new update of newdir script

update from 3.0.3 to 3.0.4:
- just update scripts in /newdir

DL link & changelog on 1st post

have fun
bounty
bounty is offline   Reply With Quote
Old 11-03-2003, 05:14 AM   #117
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default NEWDIR 3.0.5

here we go m8s

another update for 3.0.x serie
i hope you'll enjoy with this update

update from 3.0.4 to 3.0.5 : read changelog & install

ofcoz DL link & changelog are on the 1st post

have fun
bounty
bounty is offline   Reply With Quote
Old 11-03-2003, 11:26 AM   #118
kraxdaz
Member
ioFTPD Foundation User
 
Join Date: Jun 2003
Posts: 86
Default

hmm you've deleted the
source ../scripts/init.itcl
in all itcl?

how configure it?
kraxdaz is offline   Reply With Quote
Old 11-03-2003, 11:53 AM   #119
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default

Quote:
Originally posted by kraxdaz
hmm you've deleted the
source ../scripts/init.itcl
in all itcl?

how configure it?
init.itcl is hardcoded in ioftpd so if you put this file under ../scripts subdir
it will be automatically loaded by ioftpd at startup

have fun
bounty
bounty is offline   Reply With Quote
Old 11-05-2003, 06:56 PM   #120
bounty
Senior Member
ioFTPD Scripter
 
Join Date: Aug 2002
Posts: 529
Default

here we go with a little update

read changelog and DL link is on 1st post

have fun
bounty
bounty is offline   Reply With Quote
Reply

Tags
bounty, dupechecker, fun, link, m8s

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
GuildFTPd command set (import) Jesper Custom Commands 4 07-29-2011 12:41 AM


All times are GMT -5. The time now is 10:28 AM.

Parts of this site powered by vBulletin Mods & Addons from DragonByte Technologies Ltd. (Details)