Question

I'm trying to enable the php_com_donet.dll extension within PHP. When I check-mark the extension to be enabled WAMP (v2.4) restarts but then I get this error saying that the module could not be found.

enter image description here

Was it helpful?

Solution 2

I downloaded WAMP 2.4 (which was the most recent version at the time I downloaded) and was experiencing issues with loading the com_donet library so I uninstalled 2.4 and installed 2.5 By default it enabled the extension. Problem solved!

OTHER TIPS

If you have a look at the php.ini file you will see that the extension line for php_com_dotnet.dll does not actually exists.

Use the wampmanager icon to edit php.ini

wampmanager -> PHP -> php.ini

Add this line with all the other similiar extension lines they are pretty much in alphbetcial order.

extension=php_com_dotnet.dll

Restart the Apache service

wampmanager -> Apache -> Service -> Restart Service

You should now have the extension loaded.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top