PHP bağlantı bilgi dahil olmak üzere, ne değil?

0 Cevap php

Ben bir CMS web sitesi rulo çalışıyorum ve ben 1and1 internetin hosting değilim. Ben MySQL veritabanına bağlanmak için çalışıyorum ve aşağıdaki hatayı alıyorum:

'/ Var / run / mysqld / mysqld.sock' (2) soket yoluyla yerel MySQL sunucusuna bağlanamıyor

Bazı hayal kırıklığı sonra, benim içerir ve aşağıdaki kod benim bağlantı değişkenleri dosyası dahil değildir çıkıyor kontrol karar verdi.

admin.php

<?php

include("connection.php");

$link = mysql_connect($connection_server, $connection_user, $connection_password);
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);

?>

connection.php

<?php

/* --------------------------------------
/
/   Bitachon.org Connection Variables
/   
/   Created by: Moshe [Last Name]
/
/
/   Date: October 12, 2010
/
/
/   This file contains the connection 
/   variable to connect to the MySQL
/   database that powers [site]
/
/  --------------------------------------*/

//Variable to confirm that the file has been included
$connnections_included = true;


/* --- Connection Variables ---*/

$connnection_server = "[server]";

$connection_database = "[db]";

$connection_user =  "[username]";

$connection_password = "[password]";

?>

Ne oldu?

0 Cevap