Problem with cURL and PHP Output Buffering while installing zen cart

When we install zen cart under XAMPP, we often meet two issues:

ATTENTION: Problems Found CURL not compiled into PHP – notify server administrator more info…
CURL not compiled into PHP – notify server administrator more info…
CURL not compiled into PHP – notify server administrator more info…
CURL not compiled into PHP – notify server administrator more info…

and

PHP Output Buffering (gzip) = OFF

How to resove the above two issues then?

for the first one, Find your php.ini file in D:\xampp\apache\bin (or wherever it is) search for curl and uncomment the line extension=php_curl.dll (remove the semi-colon).

Please take care there are multiple php.ini files but you will find the one you want in apache/bin.

For the second, open the same php.ini file I have mentioned above, and search “output_buffering = Off“, Change the bold line for:
output_buffering = On
or
output_buffering = 4096

Both issuse need to reboot apache after editing php.ini.