Whoops, you beat me by 2 minutes: http://ww.wp.xz.cn/support/topic/224169. Same problem here.
Parece que hay una gran cantidad de problemas con el nuevo WP. Sera esta la version candidata, o es una RC???
that function (curl) is disabled by your host – ask them why
the “headers already sent” error:
http://codex.ww.wp.xz.cn/Answers-Troubleshooting#Headers_already_sent
este es el lanzamiento oficial después de meses de pruebas
The underlying problem is that your host has disabled curl, but not all of it, so WordPress detects that it is still enabled and attempts to use it. You can choose a different transport with a little minor code hacking.
First download this plugin and install it:
http://trac.ww.wp.xz.cn/attachment/ticket/8086/list_transports.php?format=raw
After you activate it, you’ll see a list of what transports WordPress detected as working at the bottom of the admin screens (in the footer). Once you know these, you can deactivate and delete the plugin.
Now, curl will probably be on the list, but you know that one doesn’t work already. So pick one of the others and add this code to your theme’s functions.php file:
function block_transport() { return false; }
add_filter('use_http_extension_transport', 'block_transport');
add_filter('use_curl_transport', 'block_transport');
add_filter('use_streams_transport', 'block_transport');
add_filter('use_fopen_transport', 'block_transport');
add_filter('use_fsockopen_transport', 'block_transport');
That will block all five possible transports from working. Now just remove the add_filter line on the transport that you want WordPress to actually use.
Hello All,
I am trying to solve error “Warning: curl_exec() has been disabled for security reasons” but I can not understand how to solve by above description. My domain is http://gaurangjadia.com/wp-login.php
I can not even login to admin area. Please help me out to solve this error.
I have the same problem here http://www.sb-informatica.it/wp-admin/
but I’m unable to login for activate the plugin http://trac.ww.wp.xz.cn/attachment/ticket/8086/list_transports.php?format=raw
How to resolve? Hope you help me… Thanks.
Silvio.
Solved, my host reactivate curl function… Thanks.
If you have a theme without a functions.php, where can you paste Otto42’s code?
You should be able to create a new file, put the code above and save as functions.php in yr theme folder.