ID:               50763
 Updated by:       [email protected]
 Reported By:      tidustracker at freenet dot de
-Status:           Open
+Status:           Feedback
 Bug Type:         MySQLi related
 Operating System: Windows Vista
 PHP Version:      5.3.1
 New Comment:

Please try using this snapshot:

  http://snaps.php.net/php5.3-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/




Previous Comments:
------------------------------------------------------------------------

[2010-01-15 11:51:26] tidustracker at freenet dot de

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.


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=50763&edit=1

Reply via email to