I found this intermitent problem on version 2.4 and upgraded to 2.6, but it still happens
I couldn't track when it happens, but it's happening pretty often (ie, 20% of times I try to use the API, it happens for around 10~15 minutes and then stops)
I tracked this down to line 174 (v2.6):
$socket = @fsockopen( $this->remote_host, $this->remote_port, $sock_errno, $sock_errstr, 10 );
debugging it I got:
$this->remote_host = "ssl://127.0.0.1"
$this->remote_port = 2222
I just get this error:
I couldn't track when it happens, but it's happening pretty often (ie, 20% of times I try to use the API, it happens for around 10~15 minutes and then stops)
I tracked this down to line 174 (v2.6):
$socket = @fsockopen( $this->remote_host, $this->remote_port, $sock_errno, $sock_errstr, 10 );
debugging it I got:
$this->remote_host = "ssl://127.0.0.1"
$this->remote_port = 2222
I just get this error:
Server Error
The following error occurred:
Code:The server closed the connection while reading the response. Contact your system administrator. Please contact the administrator.[/quote] so this must be crashing very hard for some reason... I though it may not recognize "ssl://", but it does (otherwise, why would it work many times and just not a few?) I also tried telnet 127.0.0.1 2222 and got with no problems NOTHING after this 174 line is executed this fsockopen function is just crashing everything any hints?