|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-01-15 13:40 UTC] johannes@php.net
[2010-01-15 16:31 UTC] rasmus@php.net
[2010-01-23 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 22:00:01 2025 UTC |
Description: ------------ mysqli::real_connect() with 'localhost' as host caused an connection error 2002 mysqli::real_connect() with 'p:localhost' as host caused the same connection error and ends up in an appcrash. Use of '127.0.0.1' or 'p:127.0.0.1' works fine. Reproduce code: --------------- $objMySQLi = new MySQLi(); $objMySQLi->init(); if(!$objMySQLi->options(MYSQLI_OPT_CONNECT_TIMEOUT, 3)) { die('Setting MYSQLI_OPT_CONNECT_TIMEOUT failed'); } $objMySQLi->real_connect('p:localhost', 'root', '', 'db'); Expected result: ---------------- a working (p)connection like on php 5.3.0 Actual result: -------------- php.ini: mysqli.default_host = php 5.3.0 'p:127.0.0.1' = ok '127.0.0.1' = ok 'localhost' = ok 'p:localhost' = ok php 5.3.1 'p:127.0.0.1' = ok '127.0.0.1' = ok 'localhost' = connection error 2002 Warning: mysqli::real_connect(): (HY000/2002): Ein Verbindungsversuch ist fehlgeschlagen, da die Gegenstelle nach einer bestimmten Zeitspanne nicht richtig reagiert hat, oder die hergestellte Verbindung war fehlerhaft, da der verbundene Host nicht reagiert hat. in D:\Webdevelopment\Scripts\test.php on line 68 'p:localhost' = connection error 2002 and appcrash Fehlerhafte Anwendung php_531.exe, Version 5.3.1.0, Zeitstempel 0x4b051712, fehlerhaftes Modul php_mysqli.dll, Version 5.3.1.0, Zeitstempel 0x4b051769, Ausnahmecode 0xc0000005, Fehleroffset 0x000012a5, Prozess-ID 0x1f68, Anwendungsstartzeit 01ca95d36ea6609e.