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
I get the server running in the background, and deal with it potentially crashing by running this php script as a cron:
// This lets me run the script on an interval
exec('pkill lifx-http');
echo "killed LIFX";
// The nohum and & let me keep running commands after the server is launched
$command = 'lifx-http';
exec("nohup $command >/dev/null 2>/dev/null &");
echo 'started LIFX server';
// I exit the script to prevent any system hang
exit;
The text was updated successfully, but these errors were encountered:
I get the server running in the background, and deal with it potentially crashing by running this php script as a cron:
The text was updated successfully, but these errors were encountered: