relacher le lock sur le bureau quand on cree les archives, sinon ca gele pour tout le monde
This commit is contained in:
parent
335b5beebe
commit
9b90e39ec9
|
@ -1025,6 +1025,9 @@ class m_bro {
|
||||||
header("Content-Transfer-Encoding: binary");
|
header("Content-Transfer-Encoding: binary");
|
||||||
$d=escapeshellarg(".".$this->convertabsolute($dir,true));
|
$d=escapeshellarg(".".$this->convertabsolute($dir,true));
|
||||||
set_time_limit(0);
|
set_time_limit(0);
|
||||||
|
// relacher le lock global sinon ce download va geler alternc pour
|
||||||
|
// tout le monde
|
||||||
|
alternc_shutdown();
|
||||||
passthru("/bin/tar -cZ -C ".getuserpath()."/".$mem->user["login"]."/ $d");
|
passthru("/bin/tar -cZ -C ".getuserpath()."/".$mem->user["login"]."/ $d");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1043,6 +1046,9 @@ class m_bro {
|
||||||
header("Content-Transfer-Encoding: binary");
|
header("Content-Transfer-Encoding: binary");
|
||||||
$d=escapeshellarg(".".$this->convertabsolute($dir,true));
|
$d=escapeshellarg(".".$this->convertabsolute($dir,true));
|
||||||
set_time_limit(0);
|
set_time_limit(0);
|
||||||
|
// relacher le lock global sinon ce download va geler alternc pour
|
||||||
|
// tout le monde
|
||||||
|
alternc_shutdown();
|
||||||
passthru("/bin/tar -cz -C ".getuserpath()."/ $d");
|
passthru("/bin/tar -cz -C ".getuserpath()."/ $d");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1061,6 +1067,9 @@ class m_bro {
|
||||||
header("Content-Transfer-Encoding: binary");
|
header("Content-Transfer-Encoding: binary");
|
||||||
$d=escapeshellarg(".".$this->convertabsolute($dir,true));
|
$d=escapeshellarg(".".$this->convertabsolute($dir,true));
|
||||||
set_time_limit(0);
|
set_time_limit(0);
|
||||||
|
// relacher le lock global sinon ce download va geler alternc pour
|
||||||
|
// tout le monde
|
||||||
|
alternc_shutdown();
|
||||||
passthru("/bin/tar -cj -C ".getuserpath()."/ $d");
|
passthru("/bin/tar -cj -C ".getuserpath()."/ $d");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1172,6 +1181,9 @@ class m_bro {
|
||||||
}
|
}
|
||||||
$timestamp=date("H:i:s");
|
$timestamp=date("H:i:s");
|
||||||
|
|
||||||
|
// relacher le lock global sinon ce download va geler alternc pour
|
||||||
|
// tout le monde
|
||||||
|
alternc_shutdown();
|
||||||
if(exec("/bin/tar cvf - ".getuserpath()."/ | gzip -9c > ".$dir."/".$mem->user['login']."_html_".$timestamp.".tar.gz")){
|
if(exec("/bin/tar cvf - ".getuserpath()."/ | gzip -9c > ".$dir."/".$mem->user['login']."_html_".$timestamp.".tar.gz")){
|
||||||
$err->log("bro","export_data_succes");
|
$err->log("bro","export_data_succes");
|
||||||
}else{
|
}else{
|
||||||
|
|
Loading…
Reference in New Issue