Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
696 views
in Technique[技术] by (71.8m points)

php - xdebug in phpinfo() is not showing

I have literally spent an entire day on solving the issue for xdebug not showing on phpinfo(). I've checked the file path is correct.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Windows 7 Home Premium, the contents of the php.ini file regarding xdebug are :

;zend_extension = "C:xamppphpextphp_xdebug.dll"
;xdebug.profiler_append = 0
;xdebug.profiler_enable = 1
;xdebug.profiler_enable_trigger = 0
;xdebug.profiler_output_dir = "C:xampp	mp"
;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
;xdebug.remote_enable = 1
;xdebug.remote_handler = "dbgp"
;xdebug.remote_host = "127.0.0.1"
;xdebug.remote_port = 9000
;xdebug.trace_output_dir = "C:xampp	mp"

the full path of the php.ini file is: C:xamppphpphp.ini

I changed the ;xdebug.remote.enable from 0 to 1 by opening the XAMPP and then config and then PHP, and then it disappeared from phpinfo.

I run phpinfo both in console and in webserver


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...