2011-04-05 12 views
7

साथ XDebug स्थापित करने के लिए मैं XDebug कैसे स्थापित करें और अपने मौजूदा XAMPP और ग्रहण पीडीटी के साथ एकीकृत कर सकते हैं कर सकते हैं किसी कृपया मुझे बताओ। धन्यवाद।ग्रहण पीडीटी और XAMPP

उत्तर

5

This site एक बहुत अच्छी तरह से स्थापना प्रक्रिया के माध्यम से चला जाता है। यह कहता है कि एक्सडीबग कैसे स्थापित करें, और ग्रहण के साथ इसे एकीकृत कैसे करें। हालांकि, एकमात्र मिस php.ini कॉन्फ़िगरेशन है। यदि आप इसका उपयोग करते हैं तो यह आपको देता है, XDebug ठीक से लोड नहीं किया जाएगा। मैं यह सुझाव दूंगा:

[XDebug] 
;; Only Zend OR (!) XDebug 
; Modify the filename below to reflect the .dll version of your xdebug 
zend_extension="C:\xampp\php\ext\php_xdebug-2.1.1-5.3-vc9.dll" 
xdebug.remote_enable=1 
xdebug.remote_host=localhost ; if debugging on remote server, 
         ; put client IP here 
xdebug.remote_port=9000 
xdebug.remote_handler="dbgp" 
xdebug.profiler_enable=1 
xdebug.profiler_output_dir="C:\xampp\tmp" 
xdebug.profiler_enable_trigger = 0 
xdebug.profiler_output_name = "xdebug_profile.%R::%u" 
xdebug.trace_output_dir = "C:\xampp\tmp"