[Tue Oct 09 10:41:35 2007] [error] [client 71.97.24.103] PHP Fatal error: Call to undefined function mysql_connect() in /var/www/vhosts/holylonghorns.com/httpdocs/inc/mysql_connect.php on line 9
Strange. You have php-mysql installed, I see the mysql.ini and mysqli.ini being parsed in your phpinfo, but there is no mysql section in your phpinfo. What does grep ^extension_dir /etc/php.ini tell you? The extension_dir setting should be set to /usr/lib/php/modules.
The fact that that grep command doesn't return anything indicates that there is no line in /etc/php.ini that starts with extension_dir. You really should have the following in /etc/php.ini:
Code:
extension_dir = "/usr/lib/php/modules"
You could try adding it, but I suspect there might be more problems with your php.ini. Do you have a /etc/php.ini.rpmnew file and did you follow the instructions on http://www.atomicorp.com/wiki/index.php/PHP on the .rpmnew files?