• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

problem z baza danych

Kasiunia

New Member
Joined
May 17, 2009
Messages
31
Reaction score
0
Baza danych mi dzialala normalnie az pewnego razu otwieram strone a zamiast 2 okienek pokazal sie taki komunikat:

phpMyAdmin próbował połączyć się z serwerem MySQL, a serwer odrzucił połączenie. Powinieneś sprawdzić nazwę hosta, nazwę użytkownika i hasło w pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym przez administratora serwera MySQL.
Błąd

MySQL zwrócił komunikat:
#1045 - Access denied for user 'root'@'localhost' (using password: NO)

prosze o pomoc w conig lua mam dobrze
 
Miałaś/eś zabezpieczoną bazę?; dd
Jak masz taki problem to weź sprawdź w config.inc.php, a nie to przeinstaluj MySQLa, chyba ci nie usunie bazy ; qq
 
Last edited:
1. ściągnij xampp 1.6.7
2. zabezpiecz
3. zapamietaj nazwe i haslo :)
 
#1045 - Access denied for user 'root'@'localhost' (using password: NO)

Ustawiałes hasło dla roota?

Idz do config.inc.php i sprawdź podane dane.
 
@UP:
Albo niech zostawi puste, wtedy bedzie mial panel logowania ;P
 
juz mam ten folder wkleje wam jaka zawartosc w nim mam:

<?php
/**
* Please, do not edit this file. The configuration file for Debian
* is located in the /etc/phpmyadmin directory.
*/

// Load secret generated on postinst
include('/var/lib/phpmyadmin/blowfish_secret.inc.php');

// Load autoconf local config
include('/var/lib/phpmyadmin/config.inc.php');

// Load user's local config
include('/etc/phpmyadmin/config.inc.php');

// Set the default server if there is no defined
if (!isset($cfg['Servers'])) {
$cfg['Servers'][1]['host'] = 'localhost';
}

// Set the default values for $cfg['Servers'] entries
for ($i=1; (!empty($cfg['Servers'][$i]['host']) || (isset($cfg['Servers'][$i]['connect_type']) && $cfg['Servers'][$i]['connect_type'] == 'socket')); $i++) {
if (!isset($cfg['Servers'][$i]['auth_type'])) {
$cfg['Servers'][$i]['auth_type'] = 'cookie';
}
if (!isset($cfg['Servers'][$i]['host'])) {
$cfg['Servers'][$i]['host'] = 'localhost';
}
if (!isset($cfg['Servers'][$i]['connect_type'])) {
$cfg['Servers'][$i]['connect_type'] = 'tcp';
}
if (!isset($cfg['Servers'][$i]['compress'])) {
$cfg['Servers'][$i]['compress'] = false;
}
if (!isset($cfg['Servers'][$i]['extension'])) {
$cfg['Servers'][$i]['extension'] = 'mysql';
}
}
 
Back
Top