I see this all over this site, but nobody seems to have the answerl.
I am running Apache 2 on a Trustix Linux box. I have php 5 installed and mysql. Both are running fine. However, I get the following error when I execute phpmyadmin on my server.
cannot load MySQL extension
It is driving me nuts. I have these lines in my httpd.conf file.
LoadModule bucketeer_module modules/mod_bucketeer.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule php5_module /usr/lib/apache/libphp5.so
I have the "extension=php_mysql.dll" uncommented in my php.ini file.
My httpd.conf virtual host lines look like this.
<VirtualHost 192.168.100.253:80>
DocumentRoot /home/pcinfoman/public_html
ServerName www.pcinfoman.com
CustomLog /home/pcinfoman/logs/combined_log-pcinfoman combined
AddHandler php5-script php
AddType text/html php
</VirtualHost>
HELP!!