[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-09-04 Thread Lyubomir Parvanov (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16922719#comment-16922719
 ] 

Lyubomir Parvanov edited comment on NETBEANS-2929 at 9/4/19 6:07 PM:
-

I am also experiencing this bug. Clean install of Netbeans, haven't really used 
it.

Ubuntu 19.04

Netbeans 11.1 snap package.

openjdk-8-jre

PHP 7.2.19-0ubuntu0.19.04.2 (cli) (built: Aug 13 2019 11:45:23) ( NTS )

Xdebug 2.7.2

[XDebug]
 zend_extension = /usr/lib/php/20170718/xdebug.so
 xdebug.remote_enable = 1
 xdebug.remote_autostart = 1

 

Xdebug by default uses port 9000.

I've installed yii2 basic template into /var/www/html/yii2-test-app.

!image-2019-09-04-20-51-37-754.png|width=806,height=401!

Proxy settings set to No Proxy. Port set to 9000. With and without Stop at 
first line it doesn't work. I've somehow set the option on start of debugging 
to now open the page. Properties for project are:

!image-2019-09-04-20-59-59-909.png|width=395,height=405!

!image-2019-09-04-21-00-31-797.png|width=389,height=348!

!image-2019-09-04-21-01-04-879.png|width=715,height=403!

With or without mapping, does not work.

Edit: forgot to clarify what happens - Netbeans says that it is waiting for 
connection, and the site stays loading until i stop debugging through the stop 
button of Netbeans. Then it stops loading the site and Netbeans shows that a 
connection was not made. If Netbeans debugging is not enabled then site loads 
correctly. If it is enabled just keeps on loading without showing a stop line 
in Netbeans.


was (Author: liubomirwm):
I am also experiencing this bug. Clean install of Netbeans, haven't really used 
it.

Ubuntu 19.04

Netbeans 11.1 snap package.

openjdk-8-jre

PHP 7.2.19-0ubuntu0.19.04.2 (cli) (built: Aug 13 2019 11:45:23) ( NTS )

Xdebug 2.7.2

[XDebug]
zend_extension = /usr/lib/php/20170718/xdebug.so
xdebug.remote_enable = 1
xdebug.remote_autostart = 1

 

Xdebug by default uses port 9000.

I've installed yii2 basic template into /var/www/html/yii2-test-app.

!image-2019-09-04-20-51-37-754.png|width=806,height=401!

Proxy settings set to No Proxy. Port set to 9000. With and without Stop at 
first line it doesn't work. I've somehow set the option on start of debugging 
to now open the page. Properties for project are:

!image-2019-09-04-20-59-59-909.png|width=395,height=405!

!image-2019-09-04-21-00-31-797.png|width=389,height=348!

!image-2019-09-04-21-01-04-879.png|width=715,height=403!

With or without mapping, does not work.

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: image-2019-09-04-20-51-37-754.png, 
> image-2019-09-04-20-59-59-909.png, image-2019-09-04-21-00-31-797.png, 
> image-2019-09-04-21-01-04-879.png, netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)
>  Java: jdk1.8.0_172, jre1.8.0_181
>  
> *Reproduction:*
>  # Install xdebug 2.7.2 from source by following instructions from here 
> [https://github.com/xdebug/xdebug]
>  # Set the following in php.ini
> {code:java}
> [XDebug]
> zend_extension = /usr/lib64/php7/extensions/xdebug.so
> xdebug.remote_connect_back=0
> xdebug.force_display_errors=on
> xdebug.force_error_reporting=on
> xdebug.remote_enable=on
> xdebug.remote_handler=dbgp
> xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
> where netbeans runs
> xdebug.remote_port=51234
> xdebug.remote_timeout=3000
> xdebug.remote_mode=req
> xdebug.remote_log=/var/log/xdebug/xdebug.log
> xdebug.idekey = netbeans-xdebug
> xdebug.renite_enable = 1
> xdebug.max_nesting_level = 1000
> xdebug.profiler_enable_trigger = 1
> xdebug.profiler_output_dir = '/var/log/xdebug'{code}
> 3. Restart apache2 service
> 4. Check if xdebug is installed by checking phpinfo
> 5. open Netbeans 11.1
> 6. Go to Tools > Options -> PHP -> Debugging
> 7. set "Debugger Port" to 51234
> 8. set "Session ID" to netbeans-xdebug
> 9. open a test script
> 10. right click -> Debug File
> 11. Notice that "Wating for Connection (netbeans-xdebug)" shows forever and 
> nothing happens.
> */var/log/xdebug/xdebug.log:*
> {code:java}
> [22426] Log opened at 2019-08-01 07:01:46
> [22426] I: Connecting to configured address/port: 192.168.40.161:51234.
> [22426] E: Time-out connecting to client (Waited: 3000 ms). :-(
> [22426] Log closed at 2019-08-01 

[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-08-01 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16897853#comment-16897853
 ] 

Junichi Yamamoto edited comment on NETBEANS-2929 at 8/1/19 8:01 AM:


Thanks. Maybe, you can also ask windows users about this via mailing lists. 
(I'm using linux.)

BTW, did you import from the old version when you installed NetBeans 11.1? If 
so, please try deleting your cache directory for NB 11.1.

 


was (Author: junichi11):
Thanks. Maybe, you can also ask windows users abou this via mailing lists. (I'm 
using linux.)

BTW, did you import from the old version when you installed NetBeans 11.1? If 
so, please try deleting your cache directory for NB 11.1.

 

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)
>  Java: jdk1.8.0_172, jre1.8.0_181
>  
> *Reproduction:*
>  # Install xdebug 2.7.2 from source by following instructions from here 
> [https://github.com/xdebug/xdebug]
>  # Set the following in php.ini
> {code:java}
> [XDebug]
> zend_extension = /usr/lib64/php7/extensions/xdebug.so
> xdebug.remote_connect_back=0
> xdebug.force_display_errors=on
> xdebug.force_error_reporting=on
> xdebug.remote_enable=on
> xdebug.remote_handler=dbgp
> xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
> where netbeans runs
> xdebug.remote_port=51234
> xdebug.remote_timeout=3000
> xdebug.remote_mode=req
> xdebug.remote_log=/var/log/xdebug/xdebug.log
> xdebug.idekey = netbeans-xdebug
> xdebug.renite_enable = 1
> xdebug.max_nesting_level = 1000
> xdebug.profiler_enable_trigger = 1
> xdebug.profiler_output_dir = '/var/log/xdebug'{code}
> 3. Restart apache2 service
> 4. Check if xdebug is installed by checking phpinfo
> 5. open Netbeans 11.1
> 6. Go to Tools > Options -> PHP -> Debugging
> 7. set "Debugger Port" to 51234
> 8. set "Session ID" to netbeans-xdebug
> 9. open a test script
> 10. right click -> Debug File
> 11. Notice that "Wating for Connection (netbeans-xdebug)" shows forever and 
> nothing happens.
> */var/log/xdebug/xdebug.log:*
> {code:java}
> [22426] Log opened at 2019-08-01 07:01:46
> [22426] I: Connecting to configured address/port: 192.168.40.161:51234.
> [22426] E: Time-out connecting to client (Waited: 3000 ms). :-(
> [22426] Log closed at 2019-08-01 07:01:49{code}
>  
> 12. Do the same on Netbeans 8.2 and notice that it works



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-08-01 Thread Eduard Fekete (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16897842#comment-16897842
 ] 

Eduard Fekete edited comment on NETBEANS-2929 at 8/1/19 7:44 AM:
-

Update: This is definitely a Netbeans 11.1 bug. I just tried it from another 
webserver where xdebug always works reliable since a year, but netbeans 11.1 
can't connect. I just get `Waiting for Connection (netbeans-xdebug)` forever 
and the website loads for a few minutes until it loads without any breakpoint 
being hit and I still see the Waiting for Connection message.

The log just says `Log opened at 2019-08-01 07:40:51` and nothing happens. 
While it works perfectly fine in 8.2


was (Author: edd):
Update: This is definitely a Netbeans 11.1 bug. I just tried it from another 
webserver where xdebug always works reliable since a year, but netbeans 11.1 
can't connect. I just get `Waiting for Connection (netbeans-xdebug)` forever 
and the website loads forever. The log just says `Log opened at 2019-08-01 
07:40:51` and nothing happens. While it works perfectly fine in 8.2

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)
>  Java: jdk1.8.0_172, jre1.8.0_181
>  
> *Reproduction:*
>  # Install xdebug 2.7.2 from source by following instructions from here 
> [https://github.com/xdebug/xdebug]
>  # Set the following in php.ini
> {code:java}
> [XDebug]
> zend_extension = /usr/lib64/php7/extensions/xdebug.so
> xdebug.remote_connect_back=0
> xdebug.force_display_errors=on
> xdebug.force_error_reporting=on
> xdebug.remote_enable=on
> xdebug.remote_handler=dbgp
> xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
> where netbeans runs
> xdebug.remote_port=51234
> xdebug.remote_timeout=3000
> xdebug.remote_mode=req
> xdebug.remote_log=/var/log/xdebug/xdebug.log
> xdebug.idekey = netbeans-xdebug
> xdebug.renite_enable = 1
> xdebug.max_nesting_level = 1000
> xdebug.profiler_enable_trigger = 1
> xdebug.profiler_output_dir = '/var/log/xdebug'{code}
> 3. Restart apache2 service
> 4. Check if xdebug is installed by checking phpinfo
> 5. open Netbeans 11.1
> 6. Go to Tools > Options -> PHP -> Debugging
> 7. set "Debugger Port" to 51234
> 8. set "Session ID" to netbeans-xdebug
> 9. open a test script
> 10. right click -> Debug File
> 11. Notice that "Wating for Connection (netbeans-xdebug)" shows forever and 
> nothing happens.
> */var/log/xdebug/xdebug.log:*
> {code:java}
> [22426] Log opened at 2019-08-01 07:01:46
> [22426] I: Connecting to configured address/port: 192.168.40.161:51234.
> [22426] E: Time-out connecting to client (Waited: 3000 ms). :-(
> [22426] Log closed at 2019-08-01 07:01:49{code}
>  
> 12. Do the same on Netbeans 8.2 and notice that it works



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-08-01 Thread Eduard Fekete (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16897842#comment-16897842
 ] 

Eduard Fekete edited comment on NETBEANS-2929 at 8/1/19 7:43 AM:
-

Update: This is definitely a Netbeans 11.1 bug. I just tried it from another 
webserver where xdebug always works reliable since a year, but netbeans 11.1 
can't connect. I just get `Waiting for Connection (netbeans-xdebug)` forever 
and the website loads forever. The log just says `Log opened at 2019-08-01 
07:40:51` and nothing happens. While it works perfectly fine in 8.2


was (Author: edd):
Update: This is definitely a Netbeans 11.1 bug. I just tried it from another 
webserver where xdebug always works reliable since a year, but netbeans can't 
connect. I just get `Waiting for Connection (netbeans-xdebug)` forever and the 
website loads forever. The log just says `Log opened at 2019-08-01 07:40:51` 
and nothing happens. While it works perfectly fine in 8.2

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)
>  Java: jdk1.8.0_172, jre1.8.0_181
>  
> *Reproduction:*
>  # Install xdebug 2.7.2 from source by following instructions from here 
> [https://github.com/xdebug/xdebug]
>  # Set the following in php.ini
> {code:java}
> [XDebug]
> zend_extension = /usr/lib64/php7/extensions/xdebug.so
> xdebug.remote_connect_back=0
> xdebug.force_display_errors=on
> xdebug.force_error_reporting=on
> xdebug.remote_enable=on
> xdebug.remote_handler=dbgp
> xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
> where netbeans runs
> xdebug.remote_port=51234
> xdebug.remote_timeout=3000
> xdebug.remote_mode=req
> xdebug.remote_log=/var/log/xdebug/xdebug.log
> xdebug.idekey = netbeans-xdebug
> xdebug.renite_enable = 1
> xdebug.max_nesting_level = 1000
> xdebug.profiler_enable_trigger = 1
> xdebug.profiler_output_dir = '/var/log/xdebug'{code}
> 3. Restart apache2 service
> 4. Check if xdebug is installed by checking phpinfo
> 5. open Netbeans 11.1
> 6. Go to Tools > Options -> PHP -> Debugging
> 7. set "Debugger Port" to 51234
> 8. set "Session ID" to netbeans-xdebug
> 9. open a test script
> 10. right click -> Debug File
> 11. Notice that "Wating for Connection (netbeans-xdebug)" shows forever and 
> nothing happens.
> */var/log/xdebug/xdebug.log:*
> {code:java}
> [22426] Log opened at 2019-08-01 07:01:46
> [22426] I: Connecting to configured address/port: 192.168.40.161:51234.
> [22426] E: Time-out connecting to client (Waited: 3000 ms). :-(
> [22426] Log closed at 2019-08-01 07:01:49{code}
>  
> 12. Do the same on Netbeans 8.2 and notice that it works



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-08-01 Thread Eduard Fekete (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16897823#comment-16897823
 ] 

Eduard Fekete edited comment on NETBEANS-2929 at 8/1/19 7:13 AM:
-

# Install xdebug 2.7.2 from source by following instructions from here 
[https://github.com/xdebug/xdebug]
 # Set the following in php.ini

{code:java}
[XDebug]
zend_extension = /usr/lib64/php7/extensions/xdebug.so
xdebug.remote_connect_back=0
xdebug.force_display_errors=on
xdebug.force_error_reporting=on
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
where netbeans runs
xdebug.remote_port=51234
xdebug.remote_timeout=3000
xdebug.remote_mode=req
xdebug.remote_log=/var/log/xdebug/xdebug.log
xdebug.idekey = netbeans-xdebug
xdebug.renite_enable = 1
xdebug.max_nesting_level = 1000
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir = '/var/log/xdebug'{code}
3. Restart apache2 service

4. Check if xdebug is installed by checking phpinfo

5. open Netbeans 11.1

6. Go to Tools > Options -> PHP -> Debugging

7. set "Debugger Port" to 51234

8. set "Session ID" to netbeans-xdebug

9. open a test script

10. right click -> Debug File

11. Notice that "Wating for Connection (netbeans-xdebug)" shows forever and 
nothing happens.

*/var/log/xdebug/xdebug.log:*
{code:java}
[22426] Log opened at 2019-08-01 07:01:46
[22426] I: Connecting to configured address/port: 192.168.40.161:51234.
[22426] E: Time-out connecting to client (Waited: 3000 ms). :-(
[22426] Log closed at 2019-08-01 07:01:49{code}
 


was (Author: edd):
# Install xdebug 2.7.2 from source by following instructions from here 
[https://github.com/xdebug/xdebug]
 # Set the following in php.ini

{code:java}
[XDebug]
zend_extension = /usr/lib64/php7/extensions/xdebug.so
xdebug.remote_connect_back=0
xdebug.force_display_errors=on
xdebug.force_error_reporting=on
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
where netbeans runs
xdebug.remote_port=51234
xdebug.remote_timeout=3000
xdebug.remote_mode=req
xdebug.remote_log=/var/log/xdebug/xdebug.log
xdebug.idekey = netbeans-xdebug
xdebug.renite_enable = 1
xdebug.max_nesting_level = 1000
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir = '/var/log/xdebug'{code}
3. Restart apache2 service

4. Check if xdebug is installed by checking phpinfo

5. open Netbeans 11.1

6. Go to Tools -> Options -> PHP -> Debugging-

7. set "Debugger Port" to 51234

8. set "Session ID" to netbeans-xdebug

9. open a test script

10. right click -> Debug File

11. Notice that "Wating for Connection (netbeans-xdebug)" shows forever and 
nothing happens.


*/var/log/xdebug/xdebug.log:*
{code:java}
[22426] Log opened at 2019-08-01 07:01:46
[22426] I: Connecting to configured address/port: 192.168.40.161:51234.
[22426] E: Time-out connecting to client (Waited: 3000 ms). :-(
[22426] Log closed at 2019-08-01 07:01:49{code}
 

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)
>  Java: jdk1.8.0_172, jre1.8.0_181
>  
> *Reproduction:*
>  # Install xdebug 2.7.2 from source by following instructions from here 
> [https://github.com/xdebug/xdebug]
>  # Set the following in php.ini
> {code:java}
> [XDebug]
> zend_extension = /usr/lib64/php7/extensions/xdebug.so
> xdebug.remote_connect_back=0
> xdebug.force_display_errors=on
> xdebug.force_error_reporting=on
> xdebug.remote_enable=on
> xdebug.remote_handler=dbgp
> xdebug.remote_host=192.168.40.161   #replace with IP of your remote client 
> where netbeans runs
> xdebug.remote_port=51234
> xdebug.remote_timeout=3000
> xdebug.remote_mode=req
> xdebug.remote_log=/var/log/xdebug/xdebug.log
> xdebug.idekey = netbeans-xdebug
> xdebug.renite_enable = 1
> xdebug.max_nesting_level = 1000
> xdebug.profiler_enable_trigger = 1
> xdebug.profiler_output_dir = '/var/log/xdebug'{code}
> 3. Restart apache2 service
> 4. Check if xdebug is installed by checking phpinfo
> 5. open Netbeans 11.1
> 6. Go to Tools > Options -> PHP -> Debugging
> 7. set "Debugger Port" to 51234
> 8. set "Session ID" to netbeans-xdebug
> 9. open a test script
> 10. right click -> Debug File
> 11. 

[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-08-01 Thread Eduard Fekete (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16897814#comment-16897814
 ] 

Eduard Fekete edited comment on NETBEANS-2929 at 8/1/19 7:01 AM:
-

You are not using the same version and you are on Linux. I also tried it with 
xdebug 2.6, same issue. Must be a bug related to netbeans 11.1 since it works 
with 8.2


was (Author: edd):
You are not using the same version and you are on Linux. I also tried it with 
xdebug 2.6, same issue

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)
>  
>  
> Java: jdk1.8.0_172, jre1.8.0_181



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-2929) xdebug not working with NetBeans 11.1

2019-08-01 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16897812#comment-16897812
 ] 

Junichi Yamamoto edited comment on NETBEANS-2929 at 8/1/19 6:55 AM:


I can't reproduce it.

PHP 7.2.19-0ubuntu0.18.04.1 (cli) (built: Jun 4 2019 14:48:12) ( NTS )
 Copyright (c) 1997-2018 The PHP Group
 Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
 with Zend OPcache v7.2.19-0ubuntu0.18.04.1, Copyright (c) 1999-2018, by Zend 
Technologies
 with Xdebug v2.6.0, Copyright (c) 2002-2018, by Derick Rethans
{code:java}
// /etc/php/7.2/cli/conf.d/20-xdebug.ini and 
/etc/php/7.2/apache2/conf.d/20-xdebug.ini
zend_extension=xdebug.so
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.idekey="netbeans-xdebug"
{code}
Product Version: Apache NetBeans IDE 11.1
 Java: 1.8.0_202; Java HotSpot(TM) 64-Bit Server VM 25.202-b08 
 Runtime: Java(TM) SE Runtime Environment 1.8.0_202-b08 
 System: Linux version 4.16.0-041600-generic running on amd64; UTF-8;

 

!netbeans-2929-screenshot.png!

 


was (Author: junichi11):
I can't reproduce it.

PHP 7.2.19-0ubuntu0.18.04.1 (cli) (built: Jun 4 2019 14:48:12) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
 with Zend OPcache v7.2.19-0ubuntu0.18.04.1, Copyright (c) 1999-2018, by Zend 
Technologies
 with Xdebug v2.6.0, Copyright (c) 2002-2018, by Derick Rethans
{code:java}
zend_extension=xdebug.so
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.idekey="netbeans-xdebug"
{code}
Product Version: Apache NetBeans IDE 11.1
 Java: 1.8.0_202; Java HotSpot(TM) 64-Bit Server VM 25.202-b08 
Runtime: Java(TM) SE Runtime Environment 1.8.0_202-b08 
System: Linux version 4.16.0-041600-generic running on amd64; UTF-8;

 

!netbeans-2929-screenshot.png!

 

> xdebug not working with NetBeans 11.1
> -
>
> Key: NETBEANS-2929
> URL: https://issues.apache.org/jira/browse/NETBEANS-2929
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Windows 10 64 bit
>Reporter: Eduard Fekete
>Priority: Major
> Attachments: netbeans-2929-screenshot.png
>
>
> I tried xdebug 2.7.2 with PHP 7.2.5 running on a remote linux openSUSE server.
> It does not start the debugger and says "Waiting for debugger 
> (netbeans-xdebug)" but nothing happens.
> If I try it in NetBeans 8.2 then it works.
>  
> The configuration is the same in both NetBeans (Port, IDE key)



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists