I have Apache 2.4.12 and php 5.6.9 on my Windows 8 machine and I am trying to enable the curl extension for php, but I have not had much success. After searching the Internet for this issue, it looks like others had the same problems. Here are the suggestions I found:
- Uncomment
;extension=php_curl.dll in php.ini - Uncomment
;extension_dir = "ext" in php.ini - Download and replace the php_curl.dll file in the ext php directory using one of this website
- Add to the PATH environment variable where php is installed
- Copy the libeay32.dll and ssleay32.dll files from where php is installed in C: \ Windows \ System32
I tried every sentence without success, except for the third element in the list, because it does not have a .dll file for curl with php 5.6, in fact the highest version of avaible is one for php 5.4. There should be a way to enable this extension without having to downgrade my php version to 5.4 and use the DLL file from this website. I tried searching the Internet for a .dll file, such as the one on the linked website for php 5.6, against the version of outdated PHP, but I was not lucky to find it, so I would like to help with this problem.
How to enable curl for php 5.6 on my windows 8 machine?
source share