मेरे पास है एक HTPC and a network server on my network. My server is always on, लेकिन वो HTPC sleeps when it is not in use. If I want to schedule recordings remotely I need a way to wake the HTPC. The solution I came up with is to provide a webpage on my server (password protected) कि उठता है HTPC and then redirects to the web interface of the remote control app of the HTPC. Below is the code for anyone interested…
[php language=“htmlscript”]<HTML>
<सिर>
<meta http-equiv=‘refresh’ content=’11;url=address of htpc here’ />
<script type=“text/javascript”>
// time is the number of seconds left
// name is the text part of the container to insert countdown in
// num is the unique id of the container. Allows for more than 1 per page
function countdown(पहर, नाम, num)
{
// grab the element object of the countdown container
countdownDiv = document.getElementById(name + num);
// calculate number of minutes from the seconds
minutes = Math.floor(time / 60);
// remainder is number of seconds
seconds = time % 60;
// add the current countdown display to the container specified
countdownDiv.innerHTML = ‘after ’ + सेकंड + ’ seconds, please wait’;
अगर(time == 1)countdownDiv.innerHTML = ‘after ’ + सेकंड + ’ second, please wait’;
// if time is up remove the edit div, otherwise repeat every second
अगर(पहर <= 0) countdownDiv.innerHTML = ‘now…’;
else setTimeout(‘countdown(‘ + –time + ‘,“ ‘ + नाम + ’ ”,“ ‘ + num + ‘”);’, 1000);
}
</लिपि>
</सिर>
<body bgcolor=‘#000022’ style=‘text-align: center; color: सफेद; padding-top: 30पिक्सल;’>
<h2>
The टीवी interface will automatically load <div id=“div_name1” style=“display:inline;"></div>
<script type=“text/javascript”>countdown(12, “div_name”, 1)</लिपि>
</h2>
<?PHP
flush();
$addr_byte = explode(‘:’, “MAC Address of htpc here”);
$hw_addr = ”;
के लिए ($a=0; $ए <6; $a++) $hw_addr .= chr(hexdec($addr_byte[$ए]));
$msg = chr(255).chr(255).chr(255).chr(255).chr(255).chr(255);
के लिए ($a = 1; $ए <= 16; $a++) $msg .= $hw_addr;
$s = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
$opt_ret = socket_set_option($एस, 1, 6, TRUE);
अगर(socket_sendto($एस, $msg, strlen($msg), 0, “local subnet address here”, “7”)) {socket_close($एस);return TRUE;}अन्य {return FALSE;}
?>
</तन>
</HTML>[/PHP]
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”