9

I am trying to get the following to setup work:

  • Windows 7 - 64-bit
  • XAMPP 1.7.4
  • XDebug [php_xdebug-2.1.0-5.3-vc9-x86_64.dll]

When I run phpinfo() from Xampps homepage, XDebug it is not listed anywhere. I checked the Apache error logs and there are no errors, so it seems to load the module without problem? I haven't used PHP in years so I have no clue why this isn't working.

[PHP.ini]

[XDebug]
zend_extension_ts = "C:\xampp\php\ext\php_xdebug-2.1.0-5.3-vc9-x86_64.dll"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000

2 Answers 2

12

I think you don't have the right compiler version. Copy the output of your phpinfo onto this page and it will tell you which version you need.

Sign up to request clarification or add additional context in comments.

1 Comment

I was using the wrong compiler and was using the wrong zend_extension. Needed to write it without _ts. Awesome link thanks!
3

Print out your

phpinfo();

and look at "Compilater" line

At home (win7x64 + wamp) => MSVC6 (Visual C++ 6.0)

So you need the vc6 version not vc9 version

1 Comment

Thanks, that was part of the problem

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.