|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-26 09:47 UTC] sniper@php.net
[2003-02-26 10:02 UTC] tom at linuxsystems dot be
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 01:00:02 2025 UTC |
Hi all, I compiled a new webserver (Apache/1.3.27 (Unix) PHP/4.3.1 mod_perl/1.27) and moved my scripts (from a Apache/1.3.27 (Unix) PHP/4.3.0 mod_perl/1.27) to the new server. One of my scripts contains following code: $webport = fsockopen ("www.linuxsystems.be", 80, $errno, $errstr, 2); if ($webport) print("<table class=\"text\"><tr><td>Web server:</td><td> [ <font color=\"#0B9839\">ON</font> ] </td></tr>"); else print("<tr><td>Web server:</td><td> [ <font color=\"#CE0000\">OFF</font> ] </td></tr>"); $dnsport = fsockopen ("ns1.linuxsystems.be", 53, $errno, $errstr, 2); if ($dnsport) print("<tr><td>DNS server:</td><td> [ <font color=\"#0B9839\">ON</font> ] </td></tr>"); else print("<tr><td>DNS server:</td><td> [ <font color=\"#CE0000\">OFF</font> ] </td></tr>"); .... What happens: When a service is not on (and fsockopen can not connect) I get a Segmentation fault in Apache: [Wed Feb 26 16:25:08 2003] [notice] child pid 32070 exit signal Segmentation fault (11) I copied to my other webserver (with 4.3.0) and there everythings run fine. My phpinfo (new machine): http://customer.linuxsystems.be/phpinfo.php Old phpinfo (where script can run on): http://www.internetgids.be/phpinfo.php Help is welcome :-) Kind Regards, Tom Myny