for ppl sometimes getting 0byte files which don't get deleted by zs try folowing:
edit cldn.script.c. move to the last lines.. they looks like:
/*return 0 to ioFTPD*/
debug_log("Exiting now with %i\n",exit_value);
printf("!detach %i\n",exit_value);
exit(0);
}
change this to:
/*return 0 to ioFTPD*/
debug_log("Exiting now with %i\n",exit_value);
printf("!detach %i\n",exit_value);
fflush(stdout);
exit(exit_value);
}
|