skip to Main Content

While I am starting apache server from laragon on windows I am getting this error:

The procedure entry point nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation could not be located in the dynamic link library F:laragonbinphpphp-8.3.4-Win32-vs16-x64extphp_curl.dll

As it is saying it can’t locate the the dynamic link lybrary in F:laragonbinphpphp-8.3.4-Win32-vs16-x64extphp_curl.dll. But the file is there.

I tried to set the exact location in the php.ini file but did not work.

; The ldap extension must be before curl if OpenSSL 1.0.2 and OpenLDAP is used
; otherwise it results in segfault when unloading after using SASL.
; See https://github.com/php/php-src/issues/8620 for more info.
;extension=ldap

extension=F:laragonbinphpphp-8.3.4-Win32-vs16-x64extphp_curl.dll
;extension=ffi
;extension=ftp

2

Answers


  1. Chosen as BEST ANSWER

    On my end, I just updated with the latest Apache version. based on this.


  2. It seems that there is a problem with the php_curl.dll file contained in PHP version 8.3.6. To resolve the issue, copy the file contained in version 8.1.2 to replace. The folder path is: php-8.3.6-Win32-vs16-x64ext.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search