I got this error
Warning: mysql_connect() [function.mysql-connect]: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) in /home/content/61/5499261/html/imgs/config.php on line 8
keine Verbindung möglich: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
and this is the code, Instructions says edit config.php and link database connection
<?php
$host = 'localhost';
$user = 'root';
$password = '';
$db = 'cookie';
$adminpassword= 'default';
$link = mysql_connect($host, $user, $password);
if (!$link) {
die('keine Verbindung möglich: ' . mysql_error());
}
$db_selected = mysql_select_db($db, $link);
if (!$db_selected) {
die ('Kann ' . $db . ' nicht benutzen : ' . mysql_error());
this is my database info
MySQL Database Information
Status:
Setup
Host Name:
rol11.db.5499261.hostedresource.com
Database Name:
stuffer11
Database Version:
5.0
Description:
rol
User Name:
rol11
Read-Only User Name:
jsnbarleta
Hpe someone can help me resolve this