|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-12-09 10:18 UTC] wez@php.net
[2003-12-14 21:15 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 02:00:01 2025 UTC |
Description: ------------ I have compiled PHP 4.3.4 with openssl (V 0.9.6b) support for using on an iPlanet Web Server Version 4.1 SP9 : ./configure --prefix=/usr/local/php-4.3.4 \ --with-mysql=no --enable-track-vars \ --with-openssl=/usr/local/ssl \ --with-gd \ --with-jpeg-dir=/usr/local/jpeg-6b \ --with-png-dir=/usr/local/libpng-1.2.5 \ --with-zlib-dir=/usr/local/zlib-1.1.4 \ --with-freetype-dir=/usr/local/freetype-2.1.3 \ --enable-libgcc \ --with-nsapi=/opt/netscape/server4 \ --with-ldap=/usr/local/ldapsdk-30 \ --with-oci8=/opt/oracle/8.1.7 ; I execute a script containing fopen for a https site, e.g.: <? echo "fopen ..."; $fp = fopen("https://secure.intranet/pages/pages.htm","r"); echo "fclose ..."; fclose($fp); ?> fopen will cause the Web Server to crash and it will be restartet by the watchdog process, in /var/adm/messages: Dec 9 15:30:05 su00055-5 genunix: [ID 457380 kern.notice] NOTICE: core_log: ns-httpd[24558] core dump failed, errno=27: /var/core/core.ns-httpd.24558.su00055-5.60001.60001.1070980205 Dec 9 15:30:05 su00055-5 uxwdog[24551]: [ID 767207 daemon.error] server terminated (signal 11): watchdog is restarting it at the same time in Web Server Error Log: [09/Dec/2003:15:30:07] info (24561): php4_init reports: Initialized PHP Module (128 threads exspected) There are no messages in php.log, when I try to fopen an http site, everything is ok. Thank you in advance for any hints.