CentOS 6 php without mysql curl and gd

Hello,
I found a bug with autoinstaller on CentOS 6.
Php was compiled without mysql, curl and GD with Apache 2.0 Handler.

Can see example here : http://208.89.208.58/phpinfo.php

How to resolve this bug?

Howdy,

Well, the PHP version you’re using is part of CentOS, rather than part of Virtualmin.

However, it’s not actually a bug :slight_smile:

Most distributions compile all those options as modules. So what you’d need to do is install the RPM package that contains the PHP module you want.

For example, PHP’s MySQL module comes in the php-mysql package. And the GD module is available in the php-gd package. You can install those by running yum install php-mysql and yum install php-gd.

-Eric