PHP xmlrpc extension and MAMP

angeseaft

New Member
I am trying to get the xmlrpc extension to work for php5 in MAMP (1.8.4).I checked what version of PHP 5 was installed:\[code\]$ /Applications/MAMP/bin/php5/bin/php -vPHP 5.2.11 (cli) (built: Dec 12 2009 13:19:08) Copyright (c) 1997-2009 The PHP GroupZend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies with Zend Extension Manager v1.2.2, Copyright (c) 2003-2007, by Zend Technologies with Zend Optimizer v3.3.9, Copyright (c) 1998-2009, by Zend Technologies\[/code\]I downloaded the PHP 5.2.11 source bundles, and built a shared library for xmlrpc:\[code\]$ LIBS=-lresolv ./configure --prefix=/opt --with-xmlrpc=shared$ make$ ls modulesxmlrpc.a xmlrpc.la xmlrpc.so\[/code\]I copied these files into MAMP:\[code\]$ cp modules/* /Applications/MAMP/bin/php5/lib/php/extensions/no-debug-non-zts-20060613/\[/code\]I added the extension setting to the ini file:\[code\]$ vi /Applications/MAMP/conf/php5/php.ini extension=xmlrpc.so\[/code\]I restarted MAMP:\[code\]$ ./bin/stop.sh$ ./bin/start.sh\[/code\]When I do a \[code\]phpinfo\[/code\] the only reference to \[code\]xmlrpc\[/code\] I find is in the PHP Core section:\[code\]xmlrpc_error_number => 0 => 0xmlrpc_errors => Off => Off\[/code\]I am trying to install Moodle and it still tells me that the xmlrpc extension is not available.I'm a PHP novice, so if someone could tell me how to confirm the extension is available or not that would be great, or at least some pointers on how to debug this further.Thanks.UPDATE: I found the PHP log file and it has the following entry:\[code\][08-Jan-2010 23:37:52] PHP Warning: PHP Startup: Unable to load dynamic \ library '/Applications/MAMP/bin/php5/lib/php/extensions/ \ no-debug-non-zts- 20060613/xmlrpc.so' - (null) in Unknown on line 0\[/code\]
 
Back
Top