Ubuntu – Unable to load dynamic library ‘/usr/lib/php/20151012/php_xmlrpc.dll’

Apache2PHPphp7

I have installed Apache 2.4, PHP7, and installed SimpleXML using:

apt-get install php-simplexml

Then I uncommented the line in php.ini for extension=php_xmlrpc.dll and restarted Apache.

My apache.log tells me this:

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/20151012/php_xmlrpc.dll' - /usr/lib/php/20151012/php_xmlrpc.dll: cannot open shared object file: No such file or directory in Unknown on line 0

How do I get this to go away?

Best Answer

You have 2 issues with what you described.

First, you installed a module (simplexml), while you are trying to enable a different one (xmlrpc).

To fix that, you need to install the xmlrpc module with:

sudo apt install php-xmlrpc

The second issue is the fact that you are trying to enable a .dll which is somewhat exclusive to Windows systems. On *nix systems, PHP extensions are usually .so.

But in either case, when you need to enable PHP packages in Ubuntu, you should use the phpenmod command (Available after 14.04).

So you should revert your changes by commenting that line, and run the following command:

sudo phpenmod xmlrpc