PHP7 CURL is not enabled

Viewed 7610

I installed php7 download from repo for windows, all works good. I am facing problem to enable curl. php_curl.dll file is exist in ext folder, and this extension is uncommented in php.ini, but this module is not showing in phpinfo.

This problem I am facing with php7 only if I run php5.x curl works fine. looking for solution to resolve this. is this issue in php7 inself. Is there a way to troubleshoot this problem?

3 Answers

All you need to do is find your php.ini file and uncomment ;extension=php_curl.dll this line by removing ;(semi colon), make sure I've installed curl.

Related