|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-02-06 06:28 UTC] sas at cvs dot php dot net
[2002-10-01 15:12 UTC] hholzgra@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 05:00:01 2025 UTC |
If I run any program that wants to use a socket (imap or fsockopen) they fail. I tried this program: $fp = fsockopen("www.php.net", 80, &$errno, &$errstr, 30); if(!$fp) { echo "$errstr ($errno)<br>\n"; } else { fputs($fp,"GET / HTTP/1.0\n\n"); while(!feof($fp)) { echo fgets($fp,128); } fclose($fp); } and got the following output: (0) I have tried open a socket connection with fsock on an odd port, I have also tried opening an imap_open with the same results. I am not running php in safe mode, I am running it as an apache module and I do have it working on a BSDi 4.0.1 with php-3.0.12 -John Barrett argus@sover.net