|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-05-26 01:44 UTC] mrobinso at cvs dot php dot net
[2000-07-24 20:10 UTC] david@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 16 14:00:02 2025 UTC |
After I compile php-4.0.0 with mcrypt support, I could not fire up apache, it give me no error message on apache error log. however, if I remove --with-mcrypt option, apache fire up ok with php-4.0.0 I tried --disable-posix-threads, but make no different here is my compile script on php-4.0.0 ./configure \ --with-apxs=/usr/apps/apache_1.3.12/bin/apxs \ --with-interbase=/usr/interbase \ --with-oracle=$ORACLE_HOME \ --with-oci8=$ORACLE_HOME \ --with-gdbm \ --with-dba \ --with-xml \ --with-png-dir=/usr/local/lib \ --with-mcrypt=/usr/local/lib \ --disable-posix-threads \ --disable-debug \ --without-mysql \ --enable-versioning \ --enable-track-vars even I remove --disable-debug, it still give me no error message. Also, I find oracle very unstable under php-4.0.0, sometime it works, somtime it doesn't with the same code. <? $con = ora_logon ($u, $p); $echo "$con"; ora_close ($con); ?> cheers, Sherman