View Single Post
Old 08-14-2010, 07:33 AM  
BoNeZz
Member
 
Join Date: Feb 2004
Posts: 39
Default

Quote:
Originally Posted by Yil View Post
o_dog: I think 95% of the scripts were free/public domain with ioB 2.x being the big exception. Can always check the LICENSE file if there is one.

BoNeZz: I think the problem you are having is the script, by default, runs with the current working directory set to the directory containing ioFTPD.exe. If you check out the doc/Cookies.txt file you'll find a list of all the available cookies, where they are valid, etc. In the etc/ioftpd.env file you'll find the environmental variables set up for EXEC scripts using those cookies. You can make use of those environmental variables in your .bat file which should solve your problem of determining the current real directory. This should handle any simple site commands you want to use with a .bat file like your makelrs, but probably isn't a good idea for OnEvent style stuff (see below).

Events are tricky because it's possible to do things like STOR /xvid/rel/file.r00 from a directory somewhere other than /xvid/rel. For this reason you may prefer to use a small TCL script where you can use the iTCL resolving functions to figure out the real path to the file and then have TCL call the external application...
thanks for the reply yil.

i tried to see cookies and env file, but i don't understand how to insert in .bat a (variable?) to catch realpath, also because should be batch code, env and cookies works in ioftpd, but if i launch my .bat, execute bath code, and not ioftpd code, (maybe i wrong)

itcl for me is a little bit hard, because i don't have necessary skills to make it, anyway stor question don't scare me eheh

at the moment i tried this:
Code:
E:\VirtualDub-1.9.9\virtualdub.exe /s G:\2.vcf /p"%2","%3" /r /c /x

rename C:%3 Renamed.avi
and i launched in ftprush ( i know i don't use flashfxp, but i prefer rush ), this raw:

Code:
site makerls %p%f %pmuxato.avi
%f filename selectioned
%p current path

with it i can execute with full path and i can mux audio and video, but, there is alwaya a but, when i try to rename, not works, because rename in dos\batch, want backslash \ and not forwardslash / ( forwardslash that is a path, catched from ftprush ). then isn't good this solution that i found, also because after rename, script delete mp3 and old avi, make a rar from this renamed avi, make sfv, and sample. but without realpath of course, isn't possible.

i tried also:
Quote:
@echo off
set y=%2
set y=%y:/=\%
echo ren %y% renamed.avi
with this code, execute the right command! ( because convert / with \ ) finally... no really.... because not renamed... but if i paste it and i execute in dos prompt.... works.... how it's possible if execute the same command

ftplog from this test:
Quote:
(15:42:15) [1] site makerls C:/MYFTP/My.TV.S01E01/original.avi
(15:42:15) [1] 200-ren C:\MYFTP\My.TV.S01E01\original.avi renamed.avi
(15:42:15) [1] 200 Command successful.
i hope in you, you are the only that helped me always

Quote:
Originally Posted by o_dog View Post
anyone know the legal status of the scripts that was hosted on the site before? Is it ok to put them up or will people start *****ing about copyright?
i understand you point of view when i read yil reply.
anyway, i see in your site that you have inserted donations.

im foundation member, some years ago i supported ioftpd cause, so it isn't a problem support you now, ( i hope maybe you implemented makerls in new ioninja eheheh, joke, but would be great )

Last edited by BoNeZz; 08-14-2010 at 08:46 AM.
BoNeZz is offline   Reply With Quote