PDO is shown as "Not Installed" in Froxlor

I am trying to install froxlor on Ubuntu 14.04 and have already installed the PHP5 MYSQL PDO extension.

When running the code:

php -i|grep PDO

      

The result is

PDO
PDO support => enabled
PDO drivers => mysql
PDO Driver for MySQL => enabled

      

But froxlor shows the PDO extension as "Not Installed". Curl is also installed and displayed as "Not Installed".

If that helps, here's the installation results page: Google Drive

Is there a way to fix this?

+3


source to share


1 answer


When using php on Ubuntu, there are at least three different php.ini files.

/etc/php5/cli/php.ini
/etc/php5/apache2/php.ini
/etc/php5/cgi/php.ini

      



They can be different and the same .ini file is used depending on how php is called.
phpinfo () / php -i can tell you which one was used.

0


source







All Articles