When compiling php, I am removing pdo_sqlite, adding pdo_mysql and curl, but neither show up as modules once php is installed. Can anyone explain what's going on?

 ./configure \
    --with-apxs2=/usr/local/apache/bin/apxs \
    --with-mysql \
    --enable-force-cgi-redirect \
    --disable-cgi \
    --with-openssl \
    --with-mcrypt \
    --with-gd \
    --with-pdo-mysql \
    --without-sqlite \
    --without-sqlite3 \
    --enable-pdo \
    --without-pdo-sqlite \
    --with-zlib \
    --with-gettext \
    --with-gdbm \
    --enable-pcnlt \
    --with-curl

make && make clean && make install

After installation I run php -v and the built date confirms that php was just installed.

Here's the output to php -m

[PHP Modules]
ctype
date
dom
filter
hash
iconv
json
libxml
pcntl
pcre
PDO
pdo_sqlite
posix
Reflection
session
SimpleXML
SPL
SQLite
standard
tokenizer
xml
xmlreader
xmlwriter

[Zend Modules]
link|improve this question

Have you checked the file modification time on which php ? – symcbean Feb 12 '11 at 14:38
Yes, it's current. – gAMBOOKa Feb 12 '11 at 15:49
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.