묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
트래픽 나타내는 함수에서 이런 오류가 납니다.
2004.10.12 17:02
Warning: file(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/elda/www/du.php on line 16
Warning: file(http://www.el-da.info/throttle-me): failed to open stream: Resource temporarily unavailable in /home/elda/www/du.php on line 16
트래픽 : 0.00MB
<?
ini_set("allow_url_fopen","1");
$throttle = "http://www.el-da.info/throttle-me";
$file = file($throttle);
$traffic = sprintf("%0.2fMB",strip_tags($file[43]) / 1024);
echo("트래픽 : $traffic");
?>
이 소스를 쓰고 있는데.. 갑자기 위의 오류가 나는군요.
...서버에서 막았나;
Warning: file(http://www.el-da.info/throttle-me): failed to open stream: Resource temporarily unavailable in /home/elda/www/du.php on line 16
트래픽 : 0.00MB
<?
ini_set("allow_url_fopen","1");
$throttle = "http://www.el-da.info/throttle-me";
$file = file($throttle);
$traffic = sprintf("%0.2fMB",strip_tags($file[43]) / 1024);
echo("트래픽 : $traffic");
?>
이 소스를 쓰고 있는데.. 갑자기 위의 오류가 나는군요.
...서버에서 막았나;
를
$throttle = "http://www.el-da.info/throttle-me/";
이나
$throttle = "http://www.el-da.info/throttle-me/index.php";
등으로 정확한 주소를 쓰면 되지 않을까.... (퍼버버벅)