techshare35 Posted September 6, 2009 Share Posted September 6, 2009 New to PHP and coming from the Java world from a few years back ... I'm trying to learn PHP and get writing some simple scripts with it so I installed XAMPP because that seems to be the "way to go"? At any rate, I've been mod'ing my PHP.ini like crazy and I am changing the one that shows up in the call to PHPINFO() off the XAMPP apache homepage. Problem is, nothing happens when I try to add in the code for xdebug. I've double checked the right version of dll, paths, etc. Also checked the log file for apache errors and nothing shows up. I noticed there was some huge section already in php.ini for xdebug so I just deleted that to make sure there were no conflict. Still I don't get the xdebug to show on the bottom and when I run a script I'm trying to test I just get nothing. Only the static html. No errors and it's not doing what it should. TIA for any help! This is what I have added in my php.ini. NO other entries are in for xdebug and i couldn't find any optimizer lines to disable [ZEND] ;; Only Zend OR (!) XDebug zend_extension_ts="C:\xampp\php\ext\php_xdebug.dll" xdebug.remote_enable=true xdebug.remote_host="127.0.0.1" xdebug.remote_port=9000 xdebug.profile_enable=0 xdebug.remote_handler=dbgp Link to comment https://forums.phpfreaks.com/topic/173341-just-cant-get-xdebug-going-with-xampp/ Share on other sites More sharing options...
dzelenika Posted September 10, 2009 Share Posted September 10, 2009 this configuration works on my PHP installation: zend_extension="d:/razvoj/phpProd/ext/php_xdebug.dll" xdebug.remote_mode="req" xdebug.remote_enable=On xdebug.remote_host="127.0.0.1" xdebug.remote_port=9000 xdebug.remote_handler="dbgp" xdebug.show_local_vars=1 Link to comment https://forums.phpfreaks.com/topic/173341-just-cant-get-xdebug-going-with-xampp/#findComment-915903 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.