You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 21, 2019. It is now read-only.
<div class="alert alert-danger alert-dismissable"><i class="fa fa-ban"></i><button type="button" class="close" data-dismiss="alert" aria-hidden="true"></button><b>ERROR!</b> This server has been suspended.</div> <?php
require ('footer.php');
exit();
}
if ($_REQUEST['action'] == "start") {
startstream($_REQUEST['id']);
echo msgbox("Stream on port " . $_REQUEST['control'] . " is started!", $outgoingurl . '?return=1');
}
if ($_REQUEST['action'] == "stop") {
stopautoDJ($_REQUEST['id']);
usleep(2000);
stopstream($_REQUEST['id']);
echo msgbox("Stream on port " . $_REQUEST['control'] . " is stopped!", $outgoingurl . '?return=2');
}
if ($_REQUEST['action'] == "restart") {
stopautoDJ($_REQUEST['id']);
stopstream($_REQUEST['id']);
usleep(2000);
startstream($_REQUEST['id']);
echo msgbox("Stream on port " . $_REQUEST['control'] . " has restarted!", $outgoingurl . '?return=3');