Petite correction

This commit is contained in:
Michael RICOIS 2015-11-19 15:25:31 +00:00
parent 1898511d11
commit ca3ee55521
3 changed files with 4 additions and 6 deletions

6
README
View File

@ -23,6 +23,7 @@ Configuration pour les fichiers en entrées
Send Options list (in)
----------------------
- FilterName - Filtre par nom de prestation (true) ou par nom défini
- CopyAddDate - Copy file and add a timestamp to the end of the filename
- CopyDeleteAfter - After copying the file delete it in repository
- RunWithEndFile - Only execute action when we receive file with extension .fin or .end
@ -30,9 +31,7 @@ Send Options list (in)
- Route - For each Route options (cp, ftp, sftp, mail)
cp => realpath of dir
ftp
sftp
mail
- FilterName - Filtre par nom de prestation (true) ou par nom défini
Recv Options list (out)
-----------------------
@ -40,7 +39,6 @@ Recv Options list (out)
Tck Options list (Check Transfert - use with CFT and other transfert mode)
------------------------------------------------
ALTER TABLE `flux_fileout` ADD `transfertDate` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `depotDateRead`;
Envoi dans le repo du client fichier *.tck
Recherche du fichier dans la table des flux et remplissage marqueur transfertDate
@ -57,7 +55,7 @@ Exemple surveillance retour par autre programme de transmission
$fluxBasePath IN_CLOSE_WRITE php /home/batchFlux/fileTck.php --file $@/$# >> /home/log/tck.log 2>&1
Attention, une seule entrée de repertoire peut être saisie dans la incrontab.
fileSend a été prévue pour faire gérer correctement les extension tck
fileSend a été prévue pour gérer correctement les extension tck
Sinon préférer l'utilisation de trigger.php
$fluxBasePath IN_CLOSE_WRITE,IN_ACCESS,IN_DELETE,IN_NO_LOOP /home/batchFlux/trigger.php --file $@/$# --event $%

View File

@ -35,7 +35,7 @@ try {
// --- Usage
if( isset($opts->help) || count($opts->getOptions())==0 )
{
echo "Execute basic action when a customer send a file.\n";
echo "Execute basic action when a customer read a file.\n";
echo $opts->getUsageMessage();
exit;
}

View File

@ -51,7 +51,7 @@ switch($opts->event)
} else {
passthru(__DIR__ . '/fileSend.php --file '.$opts->file.' >> /home/log/send.log 2>&1');
}
break
break;
case 'IN_ACCESS':
passthru(__DIR__ . '/fileRead.php --file '.$opts->file.' >> /home/log/read.log 2>&1');
break;