Page 1 of 1

Installation issues - missing curl, fileinfo, and gd?

Posted: Wed Apr 21, 2021 6:50 am
by sspence65
I'm running PHP 7.3.11 on Win 10. Apache 2.4.41

Setup tells me those extensions are missing.

My php.ini has curl, fileinfo, and gd2 enabled. I checked the ext folder, and the dlls are there. They show up in phpinfo();

I verified I only have one php directory, only one php.ini on my system.
phpmyfaq install error.PNG

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Wed Apr 21, 2021 3:00 pm
by Thorsten
Hi,

we're using the standard PHP functions to detect the extensions:

https://github.com/thorsten/phpMyFAQ/bl ... #L286-L299

Did you checked the CLI PHP version?

bye
Thorsten

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 5:43 am
by sspence65
php -v results in PHP 7.3.11

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 5:44 am
by Thorsten
Hi,

yes, did you tried php -m?

bye
Thorsten

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 7:13 am
by sspence65
changing extension_dir ="ext" to extension_dir = "c:\php7\ext" resolved the fileinfo and gd issue, but not the curl issue. extension=curl is uncommented and php_curl.dll exists in c:\php7\ext

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 7:15 am
by sspence65
php -m shows curl, fileinfo and gd. but still getting the curl error.
phpmyfaq install error.PNG

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 7:34 am
by Thorsten
Hi,

php -m fetches the configuration for the CLI, do you see curl support in an phpinfo() page?

bye
Thorsten

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 7:35 am
by Thorsten

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 7:56 am
by sspence65
once i added LoadFile "c:/php7/ext/libssh2.dll" to httpd.conf it worked, curl now loads.

Re: Installation issues - missing curl, fileinfo, and gd?

Posted: Thu Apr 22, 2021 11:43 am
by Thorsten
Hi,

awesome!

bye
Thorsten