Hi! I have a simple PHP script:
$mbox = imap_open ("{localhost:99 3/imap/ssl}INBOX", "test@domain.co m",
"123");
if(!$mbox) {
echo 'Error: '.imap_last_err or().'<br/>';
}
Script works fine from local PC, but results to error when executed at
web
hoster site.
The error is: "Error: Unable to create selectable TCP socket (2090 >=
1024)"
What could cause this error?
Thanks!
$mbox = imap_open ("{localhost:99 3/imap/ssl}INBOX", "test@domain.co m",
"123");
if(!$mbox) {
echo 'Error: '.imap_last_err or().'<br/>';
}
Script works fine from local PC, but results to error when executed at
web
hoster site.
The error is: "Error: Unable to create selectable TCP socket (2090 >=
1024)"
What could cause this error?
Thanks!
Comment