I am having difficulty setting up Xdebug to work with Webuilder, or....I am not sure how exactly it works. This could be a possibility too. I looked up XDebug from this site, and followed the link to set up Xdebug automatically. I installed it, I set a break point in my code, and all I get is a new tab with a new document, but I do not see the same type of image where I can check my variables and such like the one on this website that shows Debugging with XDebug. Is there a better resource with instructions how to set this up? Perhaps I have just missed something. I checked the php.ini file and it shows this:
[XDebug]
;; 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.remote_handler=dbgp
;xdebug.profiler_enable=1
;xdebug.profiler_output_dir="C:\xampp\tmp"
Is this correct? Or is there something more I need to change?
Thanks for any assistance.
Dave
XDebug setup
Moderator: kfury77
Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
Please try to follow these guidelines. This will help to receive faster and more accurate response.
- Check the Support section of the corresponding product first. Chances are you will find your answer there;
- Do not create new topics for already reported problems. Add your comments to the existing topics instead;
- Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
- Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
- Include the version number of the software you are using;
- This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Re: XDebug setup
Dave. Here is mine (previos to last xampp: Version 1.7.1). I struggle a while until this worked for me. Notice I am not using the internal web server but xampp.
You have to verify closely what version of xdebug you are using because depends on the php version you have installed. Also xdebug means comment out all the Zend section
Hope this helps
You have to verify closely what version of xdebug you are using because depends on the php version you have installed. Also xdebug means comment out all the Zend section
Code: Select all
[Zend]
;zend_extension_ts="E:\xampp\php\zendOptimizer\lib\ZendExtensionManager.dll"
;zend_extension_manager.optimizer_ts="E:\xampp\php\zendOptimizer\lib\Optimizer"
;zend_optimizer.enable_loader = 0
;zend_optimizer.optimization_level=15
;zend_optimizer.license_path =
; Local Variables:
; tab-width: 4
; End:
[XDebug]
;; Only Zend OR (!) XDebug
;zend_extension_ts="E:\xampp\php\ext\php_xdebug.dll"
zend_extension_ts="E:\xampp\php\ext\php_xdebug-2.0.4-5.2.8.dll"
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="E:\xampp\tmp"