This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 256525 - Xdebug throws socket exception error after call to mysqli_free_result
Summary: Xdebug throws socket exception error after call to mysqli_free_result
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 8.1
Hardware: PC Windows 10 x64
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-11-11 18:48 UTC by sdwarwick
Modified: 2016-08-29 06:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
idelog (55.26 KB, application/octet-stream)
2015-11-11 18:48 UTC, sdwarwick
Details

Note You need to log in before you can comment on or make changes to this bug.
Description sdwarwick 2015-11-11 18:48:51 UTC
Created attachment 157284 [details]
idelog

netbeans 8.1RC2 ,  php version 5.6.11 xdebug

Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies
    with Xdebug v2.3.3, Copyright (c) 2002-2015, by Derick Rethans


local host debugging using standard port/xdebug config

php.ini:

zend_extension = c:/php/ext/php_xdebug-2.3.3-5.6-vc11-nts.dll
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=10000
xdebug.remote_handler=dbgp
;xdebug.remote_mode=req
xdebug.remote_log = "c:/php/xdebug_remote.log"
xdebug.remote_connect_back=0
xdebug.idekey = netbeans-xdebug


seeing consistent socket exception when the following statement is found in file:

 mysqli_free_result($result);


no watches set.