gopporo Posted April 10, 2006 Share Posted April 10, 2006 I recently upgraded my MySQL to 5.0.19 and wanted to configure them in php. i intaled from rpm :MySQL-client-standard-5.0.19-0MySQL-devel-standard-5.0.19-0MySQL-server-standard-5.0.19-0MySQL-shared-compat-5.0.19-0then i tried to get them to work with php-5.1.1 so i did a ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-pear --with-mcrypt --with-mysqlmakemake installbut whe i tried to start php i got the folowing error :Syntax error on line 233 of /etc/httpd/conf/httpd.conf:Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/modules/libphp5.so: undefined symbol: _zend_list_deletecan anybodey thell me what i have done rong or what do i have to do to fix this??? Link to comment https://forums.phpfreaks.com/topic/7014-cannot-load-libphp5so-undefined-symbol-_zend_list_delete/ Share on other sites More sharing options...
random_user Posted May 8, 2006 Share Posted May 8, 2006 hi.there may be some problem with the path to libc and other libs on your system.per default php5 s configure script uses /usr/local/lib.you might want to add some --libdir=/usr/lib to your ./configurelike./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-pear --with-mcrypt --with-mysql --libdir=/usr/libto be sure it uses the new path do somemake cleanmake distclean before recompiling.if /usr/lib doesent work you may look for your systems default library direcotry :)[!--quoteo(post=363267:date=Apr 10 2006, 06:31 PM:name=gopporo)--][div class=\'quotetop\']QUOTE(gopporo @ Apr 10 2006, 06:31 PM) [snapback]363267[/snapback][/div][div class=\'quotemain\'][!--quotec--]I recently upgraded my MySQL to 5.0.19 and wanted to configure them in php. i intaled from rpm :MySQL-client-standard-5.0.19-0MySQL-devel-standard-5.0.19-0MySQL-server-standard-5.0.19-0MySQL-shared-compat-5.0.19-0then i tried to get them to work with php-5.1.1 so i did a ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-pear --with-mcrypt --with-mysqlmakemake installbut whe i tried to start php i got the folowing error :Syntax error on line 233 of /etc/httpd/conf/httpd.conf:Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/modules/libphp5.so: undefined symbol: _zend_list_deletecan anybodey thell me what i have done rong or what do i have to do to fix this???[/quote] Link to comment https://forums.phpfreaks.com/topic/7014-cannot-load-libphp5so-undefined-symbol-_zend_list_delete/#findComment-34468 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.