Absturz innerhalb von 10Minuten nach erstmaligem "Too many scripts at once...."

Und was mach ich jetzt?

edit: Jetzt hängen schon 2 Threads.

Schau mal hier: PHP: exec - Manual

Und dort der Kommentar:


This will execute $cmd in the background (no cmd window) without PHP waiting for it to finish, on both Windows and Unix. 

<?php 
function execInBackground($cmd) { 
    if (substr(php_uname(), 0, 7) == "Windows"){ 
        pclose(popen("start /B ". $cmd, "r"));  
    } 
    else { 
        exec($cmd . " > /dev/null &");   
    } 
} 
?>

paresy

Kann man vll. irgendwie eine Instanz anlegen die mir die hängenden Threads hochzählt?
Das man z.B. bei Werten von 5,6,7, … eine PUSH/eMail versenden kann, bevor sich die IPS selber ausbremst?