1) I got an error when loading in the site
Error Getting Categories - -32300 : transport error - could not open socket: 0 php_network_getaddresses: getaddrinfo failed: Name or service not known
KishPress Support Forum » Kish Multi Pro
Error Getting Categories - -32300 : transport error - could not open socket
(7 posts)-
-
Please set one of your site as default site. This can be done by going to the Home Tab first and then then the site that you would like to set as default. You will find the set default button. Then reload the page and try, it should sort out this problem
-
This is similar to the problem I am having but, this does solution not help:
Error Code - -32301 : transport error - HTTP status code was not 200
-
drsteve - I have responded to your email support
-
I am getting similar error messages.
I just sent you an email with my site login and password
Matt
-
Matt - The solution for this problem is mentioned here
http://kishpress.com/forum/topic/unable-to-add-sites-using-bulk-uploader-plugin
if ($this->timeout) {
$fp = @fsockopen($this->server, $this->port, $errno, $errstr, $this->timeout);
} else {
$fp = @fsockopen($this->server, $this->port, $errno, $errstr);
}
to be replaced with
$domain = $this->server;
$ip = gethostbyname($domain);
if ($this->timeout) {
$fp = @fsockopen($ip, $this->port, $errno, $errstr, $this->timeout);
} else {
$fp = @fsockopen($ip, $this->port, $errno, $errstr);
}
-
I have updated the file in the downloads, you can also sort out this problem by rewriting the files
Topic Closed
This topic has been closed to new replies.