Installation error magento "PHP extension" curl "must be loaded"

When I installed, it shows the following error

"PHP extension "curl" must be loaded." Please set all required settings before clicking Continue 

after the Localization stage (i.e., at the configuration stage)

I do not know how to fix this? Plz help me guys! thank you in advance

+6
source share
5 answers

Uncomment the following line: extension = php_curl.dll in the php.ini configuration file of your XAMPP / WAMP server.

+11
source

If you still cannot solve it even after uncommenting extension=php_curl.dll , here is the solution:

  • Click the wamp icon.
  • Go to php> php extensions.
  • Include php_curl in the list of extensions.
+4
source

There is a php_curl php module, you need to enable it if you install it on a local system. This parameter is located in the php.ini file. If you are on a shared server, you need to contact your hosting company. And if you have full access to the server, just turn it on.

+2
source

enable curl extensions in the following - php-pear.ini , php.ini and php5.ini in the php directory, and php.ini in the apache/bin

Include the i value, uncomment the lines

And don't forget to restart the Xamp server

+2
source

The solution for the error "PHP extension" curl "must be loaded." On Wamp Server version 2.2 for Windows 7 (64-bit operating system) ONLY.

(files for modification)

The location of the php.ini file is: C: \ wamp \ bin \ apache \ apache2.2.22 \ bin \

 php.ini file location: C:\wamp\\bin\php\php5.3.13 

phpForApache.ini file location: C: \ wamp \ bin \ php \ php5.3.13 \

Find the extension = php_curl.dll using the find command in notepad in all the above mentioned ini files and delete the semicolon, if any, and it should look like extension = php_curl.dll

 Before (;extension=php_curl.dll) after (extension=php_curl.dll) 

Now try reloading the magento installation page, where you received the error message " PHP extension" curl "should be loaded , you will not have an error :)

I hope this works for you, how it worked for me, thanks

0
source

Source: https://habr.com/ru/post/946652/


All Articles