"Your PHP installation appears to be missing the MySQL which is required for WordPress."
I have a slackware 10.2 box with:
Apache/2.2.0 (Unix) mod_ssl/2.2.0 OpenSSL/0.9.7g DAV/2 PHP/5.0.4, mysql-4.1.15
I have created database wordpress and user wordpress with all privileges on this database.
I have configured wp-config.php
All files is with default rights and chown -R to my apache user.
What is the problem ?
MySql database is working and tested with
phpMyAdmin 2.6.4-pl1
Create a file somewhere on your site with a .php extension; put this in it and post a link to it.
<?php phpinfo(); ?>
The file is here http://www.tipit.info/info.php
So what ? Can you help me ?
Seems like you don't have MySQL installed (or installed correctly).
[edit] maybe this:
http://us3.php.net/manual/en/faq.databases.php#faq.databases.mysql.php5
How can explain that phpmyadmin is working and I can login with on phpMyAdmin 2.6.4-pl1 with any user and mysql is working properly ?
Explanation (in lay terms): MySQL and PHP act like two independent "things" running in parallel - but they do not "talk" to each other ;)
more simple for stupid user like me, that I forgot to put
extension=mysql.so in php.ini
Later I hear about phpmyadmin use self library to access mysql.
Thank You !