* Thus wrote Bing Du ([EMAIL PROTECTED]):
> I don't see a ldap section in the output of phpinfo().  I need to add a
> bit more background information here...
> 
> This is not a fresh php install.  I've already installed PHP Version
> 4.3.4.  But now I want to add ldap support to it.  So I added --with-ldap
> option in the configure command.  Then I did make and make install. 
> However, phpinfo() still shows the old information.  For instance, Build
> Date was Mar 3 2004 11:15:34, Configure Command was the one without
> --with-ldap, etc..

This usually means that either you have multiple installation's of
apache and php's "make install" isn't putting the the module in the
right place.

Or, that your current apache config loads modules from a different
place than apxs told php it should go.

If you issue:
ls -laF `apxs -q LIBEXECDIR`

You should see your libphp5.so there with the latest timestamp. if
not, see if there are some errors issued with the 'make install'
(like are you issuing that as root?)

Also, look in the 'apache' section from phpinfo() and look at the
value for 'Server root', php will usually be loaded relative to
that directory.


Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to