我已经设置了一个 Beanstalk 应用程序,一切都运行良好,除了我使用 perl 脚本从某些服务器中引入一些 NTP 时间并且它似乎没有执行它。
我已经在我的正常托管服务上运行了这个,我不得不设置一些权限,因为我收到了 500 错误,但是使用 AWS 应用程序我根本没有收到任何错误,我只是得到了 NAN。
它运行一个tomcat实例。
任何帮助将不胜感激。
function ntpNewTime() {
xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', '/cgi-bin/server.pl', true);
xmlhttp.onreadystatechange = updatePage;
xmlhttp.setRequestHeader(
'Content-Type',
'application/x-www-form-urlencoded'
);
xmlhttp.send(null);
}
这就是我正在使用的功能。