Настройка curl php на Windows
Настройка cURL
Написанное ниже актуально для связки Windows 8.1 x64 , Windows10 x64 + Apache 2.4.12 (win32) + Open SSl 1.0.1m + PHP 5.6.11 (php-5.6.11-Win32-VC11-x86).
- Скачиваем библиотеку cURL http://winampplugins.co.uk/curl. Распаковываем в любую папку. Например, «W:\WebServers\usr\local\curl».
- В файле настроек PHP php.ini необходимо включить расширение extension=php_curl.dll.
- Пункт не обязательный, но во многих источниках его рекомендуют выполнять. У нас работает без выполнения этого пункта. Из папки где установлен PHP скопировать в папку « C:\Windows \system32» следующие библиотеки: libssh2.dll, php_curl.dll (находится в папке ext), ssleay32.dll, libeay32.dll. Дополнительно файл ssleay32.dll необходимо скопировать в «C:\Windows\SysWOW64».
- Добавить в переменные среды в переменную Path пути до папки установки curl.exe и файла php.ini. Например, «W:\WebServers\usr\local\curl;W:\WebServers\usr\local\php5». Очень порадовало то, что в windows10 (1511) появился новый интерфейс редактирования переменных сред. Стало очень удобно редактировать параметры.
Включение поддержки SSL для cURL
- Скачать файл http://curl.haxx.se/ca/cacert.pem в папку, в которой установлена библиотека curl.exe.
- Переименовать скаченный файл в curl-ca-bundle.crt
- Перезагрузить компьютер.
Проверка работы cURL
© 2004–2020 Студия Павла Филинкова в Екатеринбурге
Вся информация на сайте носит справочный характер и не является публичной офертой.
Установка PHP+Curl на Windows
Новичок
Установка PHP+Curl на Windows
Подскажите, как установить PHP+Curl на Windows. Я скачал все что нужно, установил curl в папку apache\php\curl\
Проверил из командной строки, библиотек работает. Но как ее связать с PHP не знаю. В Интернете у всех одна и таже фраза:
compile PHP —with-curl[=DIR]
Но как же быть с Виндой. Как параметры прописать?
young
Новичок
TeaM PHPClub
у меня юзать эту dll-ку под виндой так и не получилось.
я в итоге из командой строки curl вызываю.
т.е.
@exec(«c:\path\to\curl\curl.exe -d \»$data\» https://sslserver.com», $return_string);
tony2001
TeaM PHPClub
Новичок
Все получилось, спасибо. Привожу пример настройки, если кому интересно:
1. установил curl в папку apache\php\curl\
2. туда же кинул OpenSSL 0.9.6a (которая также включает в себя два файла: libeay32.dll и libssl32.dll). Впрочем строго говоря для работы curl необходимы только libeay32.dll и ssleay32.dll. Эти два файла должны быть в папке apache.
3. убрал ; в файле php.ini в строке:
;extension=php_curl.dll
4. проверить можно, написав в файле строку:
curl_version();
Hummerstadt
Новичок
Автор оригинала: Кром
Все получилось, спасибо. Привожу пример настройки, если кому интересно:
1. установил curl в папку apache\php\curl\
2. туда же кинул OpenSSL 0.9.6a (которая также включает в себя два файла: libeay32.dll и libssl32.dll). Впрочем строго говоря для работы curl необходимы только libeay32.dll и ssleay32.dll. Эти два файла должны быть в папке apache.
3. убрал ; в файле php.ini в строке:
;extension=php_curl.dll
4. проверить можно, написав в файле строку:
curl_version();
С curl даже «старичок» парился, не то что я там.
Нет файла OpenSSL 0.9.ba в архиве. Скачал curl-7.14.0-win32-ssl-sspi.zip и curl-7.14.0.zip.
По-прежнему не могу поставить.
Все, хакнул этот сайт http://curl.haxx.se/docs/faq.html , нашел вот это
и счастливо качаю
Why does PHP refuse to enable cURL on Windows
I am using PHP 5.5.25 with Apache 2.4 on Windows 7 x64 and I am unable to activate the cURL module. I have looked around and tried all I could think of. Please assist:
- In php.ini , the line extension=php_curl.dll is active and the file php_curl.dll is present in the extensions directory C:\php\ext
- In php.ini when I set extension_dir = ext , none of the extensions load. I get several messages when Apache starts, similar to Unable to load dynamic library ext\php_openssl.dll — The specified module could not be found.
- When I use the full path and set extension_dir = C:\php\ext , all the extensions load fine, except for cURL. I get the error: Unable to load dynamic library C:\php\ext\php_curl.dll — The specified module could not be found.
- I have tried renaming the extension to php_curl.new.dll and adjusting php.ini but I get an error message about the new filename. I have also downloaded a fresh new copy of the DLL from windows.php.net , but that made no difference.
- I have checked the file permissions for php_curl.dll (Right-click on the file >> Properties >> Security tab) and they are the same as the permissions for extensions that load successfully
- I have copied and pasted libeay32.dll and ssleay32.dll from the PHP bin directory to the System32 and SysWOW64 directories as instructed by a response to this question
- I am certain that I am editing the right php.ini since the PHP startup error messages changed when I changed the extension_dir value from ext to C:\php\ext as I explained above.
- I have made sure to restart the Apache server between php.ini configuration changes.
- If in a PHP script I execute var_dump(file_exists(‘C:\php\ext\php_curl.dll’)); , I get boolean True so PHP can see the file!
What else could explain why the cURL module is not enabled?
Enable cURL in Windows 10
I have set up local server in my laptop (Windows 10 Home Single Language 64 bit Version 1803).
I have downloaded and manually installed apache24, php7, MySQL, phpMyAdmin and wordpress by following this tutorial.
I am trying to enable cURL and so in the php.ini file i have changed
I have restarted the apache server. After that I run the following code at localhost/curl_enable.php to check whether cURL is enabled.
But it still shows
So have I missed any step. How to enable cURL in my system?
2 Answers 2
Here is the steps to enable curl on Windows :
1 — Make sure your extension_dir point to the php extension directory.
2 — uncomment or add the extension .dll name .
Here is the right syntax by convention for php extensions : php_nameOfTheExtension.dll
The .dll are placed in the extension directory of php or you must place it here in case of 3rd party download.
3 — cacert.pem is optional and is used for SSL transactions.
4 — Check with phpinfo() if curl is in the list and check the configuration.
5 — In case of error, check the error.log and access.log of Apache
6 — I forgot : add the paths of your php directory to the Windows Environment PATH Variable for .dll dependencies.
Edit 2 : Here is the path for the files :
Depending on MySQL installation & version
C:\Program Files\MySQL\MySQL Server 8.0\bin\libeay32.dll
C:\Program Files\MySQL\MySQL Server 8.0\bin\ssleay32.dll
Depending on your php directory
Example of extensions configuration with the right syntax taken from PHP5 but working also for PHP7 :
How to get CURL to work with PHP on Windows? (WAMP)
Update: The problem appears to have been corrupt DLLs somewhere in my PHP installation, or possibly a bug in PHP 5.2.9 on Win2k. I downloaded the windows (binaries-only) distribution of PHP 5.2.10 from php.net and extracted that to my c:\PHP directory. After doing that, everything worked fine.
Update2: I undid everything that I tried earlier (everything from the bulleted list below), except that I left » extension=php_curl.dll » uncommented in my php.ini file. It turns out that is all you should have to do in a proper installation.
I’m trying to get CURL to work on a Windows installation of PHP (version 5.2.9-2), and I am at wit’s end. I have found the PHP CURL installation page, this SO question which references this page, and this SO question. I’ve tried most of the suggestions in all of those pages but I still get an error. Here is my very simple test page:
Fatal error: Call to undefined function curl_init() in C:\ApacheRoot\curltest.php on line 2
In my Apache error log I get this each time the server starts:
PHP Warning: PHP Startup: Unable to load dynamic library ‘C:\\PHP\\ext\\php_curl.dll’ — The specified procedure could not be found.\r\n in Unknown on line 0
I have done the following:
- Uncommented the following line in php.ini: extension=php_curl.dll
- Copied ssleay32.dll and libeay32.dll from C:\PHP to C:\WINNT\System32
- Downloaded cURL for Win32 from curl.haxx.se and extracted the .zip file to C:\cURL
- Added C:\cURL to my system PATH environment variable.
- Verified that:
- php.ini includes extension_dir=»C:\PHP\ext»
- The directory C:\PHP\ext contains php_curl.dll
- The only php.ini file on my system is in C:\PHP (i.e. especially that there is no C:\WINNT\php.ini )
- The Apache httpd.conf file includes the line PHPIniDir «C:/PHP/»
I have also rebooted the machine (several times, in fact. ).