Llamada mala a écrit :
hello, i have problem with this version of PhpMyAdmin, the login not recognized the login of MySQL.
The Error: #1043 (Not authorized for access)
Version of PhpMyAdmin probes: 4.2.0-beta1, 4.0.4.1, 4.1.13 (this actually in used)
Version of MySQL: 5.5.37 Version of PHP: 5.5.9
- The code PHP in testing: @mysql_connect($host, $username, $password) (return OK)
[code] function checkMysqlConnection($host = "localhost", $port = 3306, $username, $password) { if (!empty($port) && $port != 3306) $host .= ":" . $port; echo "Datos: Host: " . $host . " - user: " . $username . " - pass: " . $password . "<br>" . PHP_EOL; $link = @mysql_connect($host, $username, $password); if (!is_resource($link)) return "Error"; else return "OK"; } [/code]
- Login in the MySQL console function correctly
- Probes change password in the MySQL console using PASSWORD() and OLD_PASSWORD()
- Check the configure of PHP and recognized the MySQL and MySQLi
- Probes config.inc.php using type connection (http, coockie), with SSL o without, extensions (MySQL or MySQLi)
- Check the phpinfo() and function correctly MySQL and MySQLi
All intents give me the same error #1043
Any solution?
Hi, this is not a support list. For support, please visit http://www.phpmyadmin.net/home_page/support.php.