Your PHP installation appears to be missing the MySQL extension

Your PHP installation appears to be missing the MySQL extension

The attached phpinfo.txt, it does not look like the MYSQLI extensions are enabled for CLI

The hsphere feature is ran on the web server. Hsphere however is a clustered control panel, by this each service (web, database, and mail) are all ran on independent servers. Trying to query the local web server for info from your databases it will not work.

Our mysql servers are not "local" - we are in a cluster. so, guessing by what you are saying, but, mysql not found, is likely because its looking for 
localhost. whereas the DB server is not local, and if you go under mysql tab, you wll see the mysql server hostname

Either this script has the ability to configure this to look for non local mysql host and its misconfigured for your environment - OR - the script cannot accommodate a non local host mysql
    • Related Articles

    • Reset mysql password

      First try to see if you can login to mysql as root. ssh to root user, or su root from AD login.       mysql If you get an error similar to: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) Then the password is ...
    • MySQL

      MySQL     Log into MySQL: mysql -uUSERNAME -p'PASSWORD' List Users: SELECT User FROM mysql.user; Create & Modify Users: CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; Once you have ...
    • PHP

      Php     Sort PHP processes by user: Show PHP Errors: put this code at top of php page you want to test (usually index.php): error_reporting(E_ALL); ini_set('display_errors', 1);
    • Have PHP parse .html and other extensions

      How to make .html or other extension parable by php -- hsphere: 1) Login to the control panel for the domain 2) Go to Domain Settings --> Web options --> domain (if multiple domains in the account) 3) Click the "Add extensions to PHP" button that is ...
    • MYSQL basic user permissions

       Grant Different User Permissions On a MYSQL database. Here is a short list of other common possible permissions that users can enjoy. ALL PRIVILEGES- as we saw previously, this would allow a MySQL user all access to a designated database (or if no ...