2016-06-12 160 views
-2

警告:mysqli :: mysqli():(HY000/1045):在C:\ wamp \ www \ localhost中拒绝用户'root'@'localhost'(使用password:YES)在线mctr \ db.php中6php mysql数据库1045访问被拒绝

我试图使config.inc的变化,人们在互联网上并固定,但对我没有工作,帮助

我得努力使此错误时连接和创建表

我的db连接

<?php 
$servername = "localhost"; 
$username = "root"; 
$password = " "; 

$conn = new mysqli($servername, $username, $password); 

if ($conn->connect_error) { 
    die("1: " . $conn->connect_error); 
} 
echo "2"; 
?> 

我创建表文件

<?php 
    require_once "db.php"; 
    $t = "CREATE TABLE uyeler (
    id INT(7) UNSIGNED AUTO_INCREMENT PRIMARY KEY, 
    isim VARCHAR(16) NOT NULL, 
    kullanici_adi VARCHAR(15) NOT NULL, 
    sifre VARCHAR(16) NOT NULL, 
    email VARCHAR(50) NOT NULL, 
    skype VARCHAR(20) NULL, 
    uye_tipi enum('Üye','Yönetici','Kurucu') NOT NULL default 'Üye', 
    UNIQUE KEY email (email), 
    UNIQUE KEY kullanici_adi (kullanici_adi), 
    tolpam_indirilme INT(7) NULL, 
    aylik_indirilme INT(7) NULL, 
    kayit_tarihi TIMESTAMP 
    )"; 

    $querySonucu = mysql_query($t); 

    if($querySonucu === TRUE){print "Basarili!";} else{print "Hata!";} 
    mysql_close(); 
?> 

我的config.inc.php

<?php 

/* Servers configuration */ 
$i = 0; 

$cfg['blowfish_secret'] = 'a8b7c6d'; //What you want 

/* Server: localhost [1] */ 
$i++; 
$cfg['Servers'][$i]['verbose'] = 'Local Databases'; 
$cfg['Servers'][$i]['host'] = '127.0.0.1'; 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
$cfg['Servers'][$i]['user'] = ''; 
$cfg['Servers'][$i]['password'] = ''; 

// Hidden databases in PhpMyAdmin left panel 
// $cfg['Servers'][$i]['hide_db'] = '(information_schema|mysql|performance_schema|sys)'; 

// Allow connection without password 
$cfg['Servers'][$i]['AllowNoPassword'] = true; 

// Suppress Warning about pmadb tables 
$cfg['PmaNoRelation_DisableWarning'] = true; 

// To have PRIMARY & INDEX in table structure export 
$cfg['Export']['sql_drop_table'] = true; 
$cfg['Export']['sql_if_not_exists'] = true; 

$cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman/5.7/en/'; 
/* End of servers configuration */ 

?> 
+0

你有你的数据库期望的用户名和密码? (不要发布密码) –

+0

你没有选择数据库,而是混合了MySQL API。很明显 –

回答

1

在您的数据库连接文件中。确保您的密码设置为

$password = ""; 

,而不是

$password = " "; 
0

你检查你的密码?看起来你正在使用“”,即一个空格。例如对于具有标准配置的xampp,密码为空“”