devil Posted February 10, 2006 Report Share Posted February 10, 2006 (edited) Uzliku MyQSL 4.0.15 saliku PHP un Apache, itkā vis kārtībā ieksh MyQSL uztaisiju useri paroli.. itkā rādās zaļā gaisama MySQl'am sanāca palaist phpmyadmin vis iet.. bet ja <?php $host = "localhost"; $user = 'root'; $pass = '123456'; //Šeit rakstām paroli, ko tu ievadīji instalējot MySQL $link = mysql_connect($host, $user, $pass); if (!$link) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully<br>Pieejams datu baazes:<br>'; $db_list = mysql_list_dbs($link); while ($row = mysql_fetch_row($db_list)) { echo $row[0]."<br>"; } mysql_close($link); ?> uztaisa rāda ka nevar piekonetingoties.. parāda "ccess denied for user: 'mans niks@localhost' (Using password: YES)" parole un users itkā pareizs. p.s. uzliku 4.1 un viss aizgāja.. vairāk jautājumu nava :D Edited February 11, 2006 by devil Link to comment Share on other sites More sharing options...
Recommended Posts