Activation Curl on EasyPHP

后端 未结 5 796
-上瘾入骨i
-上瘾入骨i 2020-12-16 07:00

After uncommenting the curl-modul in the php.ini i get the following error:

PHP Warning: PHP Startup: Unable to load dynamic library \'C:\\Program Fi

相关标签:
5条回答
  • 2020-12-16 07:13

    100% working solution, i won this problem!

    1) Copy libssh2.dll from php directory to Windows/system directory

    2) In php.ini #zend_extension remove (;) front row ;extension=php_curl.dll

    3) Restart Apache server.

    0 讨论(0)
  • 2020-12-16 07:13

    Simply add your php directory in the path (environment variable)

    0 讨论(0)
  • 2020-12-16 07:24

    This as, Anar Hariyev states, works:

    100% working solution, I won this problem!

    1) Copy libssh2.dll from php directory to Windows/system directory

    2) In php.ini #zend_extension remove (;) front row ;extension=php_curl.dll

    3) Restart Apache server.

    However, you can copy libssh2.dll into Apache's bin folder as opposed into the Windows System directory. This keeps the server portable.

    0 讨论(0)
  • 2020-12-16 07:24

    If you use the 32-bit version of EasyPHP and the 64-bit version of Windows, the solution is to copy the files below (from the EasyPHP PHP folder):

    • libeay32.dll
    • libsasl.dll
    • ssleay32.dll

    to the folder: C: \ WINDOWS \ SYSWOW64

    0 讨论(0)
  • 2020-12-16 07:31

    The Solution was to copy the files from the php directory:

    • libeay32.dll
    • libsasl.dll
    • ssleay32.dll

    to "C:\Windows\System"

    0 讨论(0)
提交回复
热议问题