Jump to content
  • 0

fsockopen


Simon
 Share

Question

Есть скрипт проверки доменов от PWS.

там есть функция коннекта к серверу для проверки...

var $port = 43;
var $SERVER = array(
"com"=>"whois.ripn.net");
function connect ($server)
{
while($this->RETRY <= $this->MAX_RETRIES)
{
$ptr=fsockopen($server, $this->port);
if($ptr>0)
{
$this->ERROR=0;
return($ptr);
}else
{
$this->ERROR++;
$this->RETRY++;
sleep($this->SLEEP_VAL);
}
}
}

при запросе мне выдает ошибку что

Warning: fsockopen() [function.fsockopen]: unable to connect to whois.crsnic.net:43 (A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. )

я вот ставил этот скрипт на хост и все норм работает, на компе работать не хочет... может быть проблема в том что у меня порты какие-то закрыты?? хотя запрос если не ошибаюсь идет на 43 порт сервера whois.ripn.net...

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
проверить из консоли трудно ваши подозрение про фаирвол ?

Причём любопытно :) в предоставленном куске кода whois.ripn.net , а в ошибке whois.crsnic.net

да crsnic.net моя ошибка, я просто и другой сервер проверял :)

а с консолями я ниче не понял )

Link to comment
Share on other sites

  • 0
Ну значит где-то на пути кто-то фаирволит (персональный фаирвол -> если есть на роутере -> провайдер)

Есть админ которому говоришь что ты хочешь и он те дает )) так по функции получается что я должен иметь 43порт открытый?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy