3

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?

Andrea
  • 19,134
  • 4
  • 43
  • 65
Praveen D
  • 2,337
  • 2
  • 31
  • 43

3 Answers3

3

Seems there is issue with 7.0.3 I installed 7.0.4 And all works fine.

Praveen D
  • 2,337
  • 2
  • 31
  • 43
1

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.

TheTom
  • 298
  • 3
  • 15
0

Make sure you didn't forget to uncomment line:

;extension_dir = "ext"

in php.ini on Windows machine.

lukyer
  • 7,595
  • 3
  • 37
  • 31