File: /home/httpd/html/freecams1.com/public_html/admin/paths.php
<div style='font-family: Arial, Helvetica, sans-serif; font-size: 12px;'>
<?
echo "<strong>FFMPEG:</strong> " . shell_exec('whereis ffmpeg');
echo "<br>";
echo "<strong>Yamdi:</strong> " . shell_exec('whereis yamdi');
echo "<br>";
echo "<strong>MP4Box:</strong> " . shell_exec('whereis mp4box') . ' ' . shell_exec('whereis MP4Box');
echo "<br>";
echo "<strong>WGET:</strong> " . shell_exec('whereis wget');
echo "<br>";
echo "<strong>PHP CLI:</strong> " . shell_exec('whereis php');
echo "<br>";
echo "<strong>ImageMagick:</strong> " . shell_exec('whereis convert');
echo "<br>";
echo "<strong>DOC ROOT:</strong> " . $_SERVER[DOCUMENT_ROOT];
echo "<br><br>";
$var = shell_exec('ps aux | grep encoder');
if (stripos($var, 'encoder_cron.php')) {
echo "<span style='color: green; font-weight: bold;'>Command 'ps aux | grep encoder' reports encoder is running!</span><br><br>";
} else {
echo "<span style='color: red; font-weight: bold;'>Command 'ps aux | grep encoder' reports encoder is NOT running!</span><br><br>";
}
echo "<br><BR>";
phpinfo();
?>
</div>