Yo tengo un HTPC y un servidor de red en mi red. Mi servidor está siempre en, pero el HTPC duerme cuando no está en uso. Si quiero programar grabaciones de forma remota necesito una manera de despertar la HTPC. La solución que se me ocurrió es proporcionar una página web en mi servidor (protegido con contraseña) que despierta la HTPC y luego vuelve a dirigir a la interfaz web de la aplicación de control remoto de la HTPC. Below is the code for anyone interested…
[php language=“htmlscript”]<HTML>
<cabeza>
<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(hora, nombre, 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 ’ + segundos + ’ seconds, please wait’;
si(time == 1)countdownDiv.innerHTML = ‘after ’ + segundos + ’ second, please wait’;
// if time is up remove the edit div, otherwise repeat every second
si(hora <= 0) countdownDiv.innerHTML = ‘now…’;
else setTimeout(‘countdown(' + –time + ',“ ‘ + nombre + ’ ”,“ ‘ + num + ‘”);’, 1000);
}
</guión>
</cabeza>
<body bgcolor=‘#000022’ style=‘text-align: center; color: blanco; padding-top: 30px;’>
<h2>
los TV interface will automatically load <div id=“div_name1” style=“display:inline;"></div>
<script type=“text/javascript”>countdown(12, “div_name”, 1)</guión>
</h2>
<?php
flush();
$addr_byte = explode(':’, “MAC Address of htpc here”);
$hw_addr = ”;
para ($a=0; $a <6; $a++) $hw_addr .= chr(hexdec($addr_byte[$a]));
$msg = chr(255).chr(255).chr(255).chr(255).chr(255).chr(255);
para ($a = 1; $a <= 16; $a++) $msg .= $hw_addr;
$s = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
$opt_ret = socket_set_option($s, 1, 6, TRUE);
si(socket_sendto($s, $msg, strlen($msg), 0, “local subnet address here”, “7”)) {socket_close($s);return TRUE;}más {return FALSE;}
?>
</cuerpo>
</HTML>[/php]
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”