CodeLobster IDE
http://codelobster.com/forum/

Debugger not working
http://codelobster.com/forum/viewtopic.php?f=8&t=25230
Page 1 of 1

Author:  anva [ Mon Apr 03, 2023 5:45 am ]
Post subject:  Debugger not working

I updated Xampp to the latest version (8.2.0) and the CodeLobsterIDE debugger does not work any more (Windows 10 Home and CodeLobster IDE 2.3.0).
I attach the php.ini and the phpinfo.zip file. I also set the port to 9003 in the debugger options.

Thanks

Attachments:
phpinfo.zip [26.32 KiB]
Downloaded 2952 times
php.ini [74.55 KiB]
Downloaded 2976 times

Author:  Admin [ Tue Apr 04, 2023 6:52 am ]
Post subject:  Re: Debugger not working

Hi.

Please, include the following lines into your php.ini file:

zend_extension = "C:\xampp\php\ext\php_xdebug-3.2.1-8.2-vs16-x86_64.dll"
xdebug.client_host = localhost;
xdebug.client_port = 9003;
xdebug.mode=develop,debug,profile;
xdebug.start_with_request = yes;

Regards,
Codelobster Team.

Author:  anva [ Tue Apr 04, 2023 8:11 am ]
Post subject:  Re: Debugger not working

Admin Wrote:
Hi.
Please, include the following lines into your php.ini file:

Yes, it works, thanks.

Author:  Luka$ [ Thu Nov 09, 2023 9:16 pm ]
Post subject:  Re: Debugger not working

I have a similar problem.
I have Win11, CodeLobster IDE 2.4.0, Wamp 3.3.1 64bit
The debugger works for me on php5.6.40. But it doesn't work on php8.1.25.

Command for CLI
Code:
c:\wamp64\bin\php\php5.6.40\php.exe -dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=6000 -dxdebug.remote_host=127.0.0.1


php.ini
Code:
; XDEBUG Extension
[xdebug]
zend_extension ="c:/wamp64/bin/php/php5.6.40/zend_ext/php_xdebug-2.5.5-5.6-vc11-x86_64.dll"
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=1
xdebug.remote_port = 6000




Command for CLI
Code:
c:\wamp64\bin\php\php8.1.25\php.exe -dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=6000 -dxdebug.remote_host=127.0.0.1


php.ini
Code:
; XDEBUG Extension
[xdebug]
zend_extension="c:/wamp64/bin/php/php8.1.25/ext/php_xdebug-3.2.1-8.1-vs16-x86_64.dll"
;xdebug.mode allowed are : off develop coverage debug gcstats profile trace
xdebug.mode =develop
xdebug.output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=0
xdebug.log="c:/wamp64/logs/xdebug.log"
;xdebug.log_level : 0 Critiâ—‹cals, 1 Connection, 3 Warnings, 5 Communication, 7 Information, 10 Debug   Breakpoint
xdebug.log_level=7
xdebug.profiler_output_name=trace.%H.%t.%p.cgrind
xdebug.use_compression=false

[xdebug]
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="c:/wamp64/tmp"
xdebug.show_local_vars=1
xdebug.remote_port = 6000


I downloaded the new DLL from here: https://xdebug.org/files/php_xdebug-3.2 ... x86_64.dll

Author:  Admin [ Mon Nov 13, 2023 6:29 am ]
Post subject:  Re: Debugger not working

Hi.

Please, include the following lines into your php.ini file:

zend_extension = "C:\xampp\php\ext\php_xdebug-3.2.1-8.2-vs16-x86_64.dll"
xdebug.client_host = localhost;
xdebug.client_port = 9003;
xdebug.mode=develop,debug,profile;
xdebug.start_with_request = yes;

Regards,
Codelobster Team.

Author:  Guest [ Sun Nov 26, 2023 10:25 pm ]
Post subject:  Re: Debugger not working

Cool.
It works, thanks.

Page 1 of 1 All times are UTC
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/