PHP unable to load php_curl.dll extension

后端 未结 13 2541
暖寄归人
暖寄归人 2020-11-29 08:58

Follow-up from my post yesterday (Enabling cURL with PHP)

The problem is that PHP isn\'t able to load php_curl.dll. I\'ve tried several steps including uncommenting

13条回答
  •  难免孤独
    2020-11-29 09:24

    Solution:

    Step1: Uncomment the php_curl.dll from php.ini
    
    Step2: Copy the following three files from php installed directory.i.e "C:\\php7".
    
    libeay32.dll,
    libssh2.dll,
    ssleay32.dll
    
    Step3: Paste the files under two place
    
    httpd.conf's ServerRoot directive. i.e "C\Apache24"
    apache bin directory. i.e "C\Apache24\bin"
    
    Step4: Restart apache.
    

    That's all. I solve the problem by this way.Hope it might work for you.

    The solution is given here. https://abcofcomputing.blogspot.com/2017/06/php7-unable-to-load-phpcurldll.html

提交回复
热议问题