1

I search and search by Google and I didn't find anything useful. After I debug the first time in Netbeans, I cannot enter to phpmyadmin. I tried to change the next settings. I have PHP Version 5.6.15 and Xampp is 3.2.2.

xdebug.remote_autostart = 0

And

xdebug.collect_return="0"

But I don't find where to change it, so I added that lines to the php.ini but it doesn't work. So I don't know what to do. Any ideas?

Enabling XDebug in XAMPP slows down phpmyadmin enabling xdebug remote debug makes apache server very slow Problems with database links on phpmyadmin interface

1
  • I found the solution very easy. Everywhere says that you must restart apache, but it worked out when I restart the computer. Commented Dec 1, 2016 at 21:31

1 Answer 1

1

I changed the version of xdebug to the current one: Xdebug 2.5.0
I followed the instructions at this link: https://xdebug.org/wizard.php

Then I put this in php.ini:

;Xdebug

zend_extension="C:\Ampps\php\ext\php_xdebug-2.5.0-5.5-vc11.dll"

xdebug.profiler_enable = 1

xdebug.remote_enable= 1

;xdebug.remote_hadnler = "dbgp" ;es valor por defecto

;xdebug.remote_host="127.0.0.1;es valor por defecto

;xdebug.remote_port=9000;es valor por defecto

xdebug.trace_output_dir= "c:\ampps\tmp"
Sign up to request clarification or add additional context in comments.

Comments

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.