Loading error. HTTP vehicles are available that can fulfill the requested request

When I try to install a theme on a wamp server, it shows the line below Error loading. There are no HTTP transports available that can fulfill the requested request. How to fix it?

+4
source share
5 answers

I think you will probably need to activate the php_curl extension to solve this problem.

Do this to activate the php_curl extension: -

Left-click the wampmanager (this is the W icon on the taskbar)

wampmanager -> PHP -> PHP Extensions

If the php_curl extension is not ticked, click on it and it will activate the extension and restart Apache for you.

php_openssl , .

+18

, :

  • allow_url_fopen = On
  • PHP php_curl

.

WordPress . , , .

curl, curl SSL ( API), .

(fopen). fopen , URL- (allow_url_fopen), openssl , .

, fsockopen, openssl , fsockopen .

, - . HTTP-API WordPress.

, .

, , WordPress.

+4

, WordPress localhost Xampp, . , PHP curl.

: 1. "php.ini". 2. "; extension = php_curl.dll". 3. " ". 4. . Xampp, .

+1
source

You also need to activate the php_curl extension to solve this problem.

as uncommented extension = php_openssl.dll in php.ini file.

Do this to uncomment the following extension: -

wampicon → php → php.ini

then search for the next extension in the php.ini file.

Hope this helps you solve your problems.

0
source

Setting up both of these extensions in the php.ini file worked for me:

C:\wamp\bin\php\php5.3.13
C:\wamp\bin\apache\apache2.2.22\bin


extension=php_openssl.dll 
extension=php_curl.dll
0
source

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


All Articles