문제

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

도움이 되었습니까?

해결책 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!

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top