关于apache2.2.8+php5.2.5的问题

关于apache2.2.8+php5.2.5的问题

在red flag linux6上装的!
如下:
apache2.2.8:
./configure --prefix=/usr/local/apache2 --enable-module=so
make
make install
装上后能正常运行!
php5.2.5:
./configure --prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apxs
make
make install(安装提示如下)
[root@localhost php-5.2.5]# make install
Installing PHP SAPI module:       apache2handler
/usr/local/apache2/build/instdso.sh SH_LIBTOOL='/usr/lib/apr-1/build/libtool' libphp5.la /usr/local/apache2/modules
/usr/lib/apr-1/build/libtool --mode=install cp libphp5.la /usr/local/apache2/modules/
cp .libs/libphp5.so /usr/local/apache2/modules/libphp5.so
cp .libs/libphp5.lai /usr/local/apache2/modules/libphp5.la
libtool: install: warning: remember to run `libtool --finish /root/web/php-5.2.5/libs'
chmod 755 /usr/local/apache2/modules/libphp5.so
[activating module `php5' in /usr/local/apache2/conf/httpd.conf]
Installing PHP CLI binary:        /usr/local/php5/bin/
Installing PHP CLI man page:      /usr/local/php5/man/man1/
Installing build environment:     /usr/local/php5/lib/php/build/
Installing header files:          /usr/local/php5/include/php/
Installing helper programs:       /usr/local/php5/bin/
  program: phpize
  program: php-config
Installing man pages:             /usr/local/php5/man/man1/
  page: phpize.1
  page: php-config.1
Installing PEAR environment:      /usr/local/php5/lib/php/
[PEAR] Console_Getopt - already installed: 1.2.3
[PEAR] Archive_Tar    - already installed: 1.3.2
[PEAR] Structures_Graph- already installed: 1.0.2
[PEAR] PEAR           - already installed: 1.6.1
Wrote PEAR system config file at: /usr/local/etc/pear.conf
You may want to add: /usr/local/php5/lib/php to your php.ini include_path
Installing PDO headers:          /usr/local/php5/include/php/ext/pdo/

到 apache目录下运行
./httpd -k start 时提示:
[root@localhost bin]# ./httpd -k start
httpd: Syntax error on line 53 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/modules/libphp5.so: undefined symbol: sqlite3VtabArgExtend

那位高手兄弟能帮帮我这菜鸟呀!!!      
引用:
原帖由 jhting 于 2008-2-7 16:52 发表
在red flag linux6上装的!
如下:
...
Wrote PEAR system config file at: /usr/local/etc/pear.conf
You may want to add: /usr/local/php5/lib/php to your php.ini include_path
...
注意这句!在php.ini加上/usr/local/php5/lib/php 的路径试试。      
如果不用 sqllite, 在 configure php 的时候 disable 掉就可以了. 用
./configure --help | grep sqlite 看看相关编译选项.