Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Wo is der Unterschied? Der Server wird ihn eh ausbremsen und somit wirds "zwangs-serialisiert".Ich möchte den User nicht zumuten über 100 Dateien gleichzeitig zu Downloaden
Sollte daher schon nach einander erfolgen.
$ip = $_SERVER["REMOTE_ADDR"];
$output = shell_exec("netstat -atn | grep ':443'");
$anzahleintraege = substr_count($output, '_');
$output = explode("_",$output);
for($i='0'; $i<=$anzahleintraege; $i++) {
$output2 = str_replace(" ", "",$output[$i]);
$output2 = str_replace("
", "",$output2);
$output2 = str_replace("tcp600:::443:::*LISTEN", "",$output2);
if (preg_match("/ESTABLISHED/", "$output[$i]")){
$output2 = explode(':443', $output2);
$output2 = preg_replace ("#[:].*#","",$output2[1]);
if ($output2 == "$ip"){
$anzahlip = $anzahlip+1;
}
}
}
if ($anzahlip == "1" OR $anzahlip == "0"){
// Ausgabe wenn Download fertig ist
}else{
echo "<meta http-equiv=\"refresh\" content=\"60; url=/xyz.php?dl=$_GET[dl]\" >";
}