Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Problems With MYSQL (FIRST STEPS)


chrishajer
Participant

@chrishajer

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.

http://www.php.net/phpinfo

That would be the first step, seeing if your PHP was compiled with the proper modules for MySQL.

Skip to toolbar