Correction chemin et permission
This commit is contained in:
parent
000aad0357
commit
a67437a3d1
@ -79,7 +79,7 @@ if ( $result->count() > 0 ) {
|
|||||||
DIRECTORY_SEPARATOR . 'recv' .
|
DIRECTORY_SEPARATOR . 'recv' .
|
||||||
DIRECTORY_SEPARATOR . $item->fileOut;
|
DIRECTORY_SEPARATOR . $item->fileOut;
|
||||||
|
|
||||||
switch ($item->typeDepot) {
|
switch ($item->depotType) {
|
||||||
case 'FTP':
|
case 'FTP':
|
||||||
$dest = $c->profil->path->ftp .
|
$dest = $c->profil->path->ftp .
|
||||||
DIRECTORY_SEPARATOR . $item->client .
|
DIRECTORY_SEPARATOR . $item->client .
|
||||||
@ -97,7 +97,7 @@ if ( $result->count() > 0 ) {
|
|||||||
|
|
||||||
if ( copy($source, $dest) ) {
|
if ( copy($source, $dest) ) {
|
||||||
|
|
||||||
chown($dest, $user);
|
chown($dest, $item->client);
|
||||||
|
|
||||||
$fluxM->update(array(
|
$fluxM->update(array(
|
||||||
'depotDate' => date('YmdHis'),
|
'depotDate' => date('YmdHis'),
|
||||||
@ -106,7 +106,7 @@ if ( $result->count() > 0 ) {
|
|||||||
$subject = "[Flux] - Envoi d'un fichier " . $item->client;
|
$subject = "[Flux] - Envoi d'un fichier " . $item->client;
|
||||||
$txt = "Envoi d'un fichier après traitement\n";
|
$txt = "Envoi d'un fichier après traitement\n";
|
||||||
$txt.= "Client : ".$item->client."\n";
|
$txt.= "Client : ".$item->client."\n";
|
||||||
$txt.= "Mode de transmission : ".$item->typeDepot."\n";
|
$txt.= "Mode de transmission : ".$item->depotType."\n";
|
||||||
$txt.= "Fichier : ".$item->fileOut."\n";
|
$txt.= "Fichier : ".$item->fileOut."\n";
|
||||||
|
|
||||||
$mail = new Zend_Mail('UTF-8');
|
$mail = new Zend_Mail('UTF-8');
|
||||||
|
@ -15,7 +15,9 @@ autoloaderNamespaces[] = "Metier_"
|
|||||||
|
|
||||||
; Scores configuration
|
; Scores configuration
|
||||||
profil.path.data = "/home/data"
|
profil.path.data = "/home/data"
|
||||||
profil.path.storage = "/home/data"
|
profil.path.storage = "/home/data/clients"
|
||||||
|
profil.path.ftp = "/home/data/ftp"
|
||||||
|
profil.path.sftp = "/home/data/sftp"
|
||||||
|
|
||||||
; Database configuration
|
; Database configuration
|
||||||
profil.db.metier.adapter=mysqli
|
profil.db.metier.adapter=mysqli
|
||||||
|
Loading…
Reference in New Issue
Block a user