ドメイン名の可用性をチェックするスクリプトがあります。スクリプトは .gr では機能しません。その理由はわかりません。これはスクリプトです:
<?php
set_time_limit(0);
ob_start();
$extensions = array(
'.com' => array('whois.crsnic.net','No match for'),
'.gr' => array('whois.ripe.net','No entries found'),
'.net' => array('whois.crsnic.net','No match for'),
'.co.uk' => array('whois.nic.uk','No match'),
'.edu' => array('whois.internic.net', 'No match for'),
);
if(isset($_GET['domain']))
{
$domain = str_replace(array('www.', 'http://'), NULL, $_GET['domain']);
if(strlen($domain) > 0)
{
foreach($extensions as $extension => $who)
{
$buffer = NULL;
$sock = fsockopen($who[0], 43) or die('Σφάλμα σύνδεσης με τον διακομιστή:' . $server);
fputs($sock, $domain.$extension . "\r\n");
while( !feof($sock) )
{
$buffer .= fgets($sock,128);
}
fclose($sock);
if(eregi($who[1], $buffer))
{
echo '<h4 class="available"><span>Διαθέσιμo</span>' . $domain. '<b>' . $extension .'</b> είναι διαθέσιμο</h4>';
}
else
{
echo '<h4 class="taken"><span>Μη Διαθέσιμo</span>' . $domain . '<b>' .$extension .'</b> δεν είναι διαθέσιμο</h4>';
}
echo '<br />';
ob_flush();
flush();
sleep(0.3);
}
}
else
{
echo 'Παρακαλώ εισάγετε ένα Domain Name';
}
}
?>
そしてHtml:
<html>
<head>
<script type="text/javascript" src="jquery-1.2.6.min.js"></script>
<script language="javascript">
$(document).ready(function() {
var loading;
var results;
form = document.getElementById('form');
loading = document.getElementById('loading');
results = document.getElementById('results');
$('#Submit').click( function() {
if($('#Search').val() == "")
{alert('Παρακαλώ Εισάγετε Ένα Όνομα');return false;}
results.style.display = 'none';
$('#results').html('');
loading.style.display = 'inline';
$.post('process.php?domain=' + escape($('#Search').val()),{
}, function(response){
results.style.display = 'block';
$('#results').html(unescape(response));
loading.style.display = 'none';
});
return false;
});
});
</script>
</head>
<body>
<center>
<div id="Heading">Ευρεση Domain</div>
<form method="post" action="./" id="form">
<input type="text" autocomplete="on" id="Search" name="domain">
<input type="submit" id="Submit" value="Submit">
</form>
<div id="loading">
<img src="load.gif"></img>
</div>
<div id="results" style="width:400px;" align="center"></div>
</center>
</body>
</html>
.gr では、「エントリが見つかりません」が機能しないと思います。手がかりはありますか?回答ありがとうございます。