Files
VestaCP/web/index.php

19 lines
411 B
PHP
Raw Normal View History

2011-06-14 00:22:25 +03:00
<?php
echo "<title>Testing Vesta Control Panel</title>\n";
echo "<pre>\n";
2011-12-29 13:41:30 +03:00
$cmd='/usr/bin/sudo /usr/local/vesta/bin/v_list_users json';
2011-06-14 00:22:25 +03:00
echo "Command: $cmd\n\n";
exec ($cmd,$output,$return);
if ($return > 0) {
echo "Error $return: something is wrong\n";
foreach ($output as $row) {
echo "$row\n";
}
} else {
foreach ($output as $row) {
echo "$row\n";
}
}
echo "</pre>\n";
?>