Hello JMG,
Thank you for reaching out. Based on your description, it seems the installer is only detecting PostgreSQL (PDO) and not MySQLi. This could be due to one of the following reasons:
- Missing MySQLi Extension – Please verify that the MySQLi extension is enabled in your PHP configuration (php.ini). You can check this by creating a file named phpinfo.php, then accessing it from your browser.
Code:
<?php
phpinfo();
?>
Look for “mysqli” in the output to confirm it’s enabled.
- PHP Version Compatibility – Ensure that your PHP version meets the application’s requirements. Some versions might require PDO MySQL instead of MySQLi.
- Server Configuration – If you are using a hosting service, check with your provider to confirm that MySQLi is enabled and properly configured.
If the issue persists, please provide more details about your server environment (PHP version, hosting type, and any logs/errors). This will help us troubleshoot further.
Looking forward to your response!
Best regards,