Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

httpd fails to load xDebug: The procedure entry point could not be located

after enabling xdebug through php.ini file, I recieve the following error frmo the httpd.exe process:

The procedure entry point zend_unmangle_property_name_ex could not be located in the dynamic link library php5ts.dll.

I have uncommented the following 2 options:

  • zend_extension = "C:\Users***\xampp\php\ext\php_xdebug.dll"
  • xdebug.remote_enable = 1 (this was set to 0 by default)

I'm using XAMPP 1.8.2 as my LAMP, running on Windows 7 SP1 (32-bit). PHP version is 5.4.16.

like image 609
Rami Avatar asked Jun 28 '13 13:06

Rami


People also ask

How do I fix the procedure entry point could not be located in dynamic link library error in cod4?

This error is mostly caused by a corrupted dll file, other configuration files, drivers, or a bad configuration and can be fixed by either fixing or replacing the dll files, performing a system restore, reinstalling a fresh copy of the application, or updating to the latest version.

What is procedure entry point?

The procedure entry point error message usually tells you which file is missing, so you need to find it in Apple Application Support directory and copy it.


1 Answers

You are using the wrong binary. Please refer to the Xdebug wizard at http://xdebug.org/wizard.php to find out which binary you need.

like image 65
Derick Avatar answered Sep 21 '22 06:09

Derick