Hallo,
kann man mit PHP testen, ob auf den Webserver eine bestimmte Anwendung (*.exe) gerade ausgeführt wird???
					kann man mit PHP testen, ob auf den Webserver eine bestimmte Anwendung (*.exe) gerade ausgeführt wird???
$count = (int)exec("ps aux | grep $kommando | wc");
if ($count>1) // ein gefundenes ist das grep
  echo "kommando wird ausgeführt"; 
Comment