Re: Problems With MYSQL (FIRST STEPS)
Can you post the output from phpinfo? That error message comes up when the installation cannot find either the mysql or mysqli extensions. It’s possible PHP was configured without those extensions.
Create a file (maybe name it info.php or anything.php) and put this into it:
<?php
phpinfo();
?>
Go to the location of that file with a web browser (like http://www.yourserver.com/info.php) and that will echo a whole bunch of data back about the PHP installation.
That would be the first step, seeing if your PHP was compiled with the proper modules for MySQL.