my problem seemed to be PHP listening on the wrong port for mysql
you need to go to this file /etc/php.ini.default and modify this line
mysql.default_socket =
to
mysql.default_socket = /tmp/mysql.sock
that fixed it for me
yup it worked, great thanks
this is a huge help, thanks so much!!!
so i should be able to do something like this?
<?php if ( is_category( “35th Annual PCA\’s” ) ) {
echo ‘<h1 id=”blog-title”>Category: 35th Annual PCAs</h1>’;
} ?>