Hi
I am missing somethink here
I am tring to install a php app into an ibay that needs mysql
ok here what i have done
made the database use phpadmin ran the sql scipt that came with the app made all the tableand entered the default data
and created an user for the app and granted primissons the that user for the database
bu when i run the app it can't conect to mysql
the app db settings are
$db_host = "localhost:/var/lib/mysql/mysql.sock";
$db_port = "";
$db_name = "recipedb";
$db_user = "recipe";
$db_password = "recipe";
I have tried
$db_host = "localhost";
Any body got any ideas
paul