curl_exec() has been disabled for security reasons in Wordpress 2.7
The latest version of Wordpress 2.7 requires curl_exec() function. However, for security reasons, many hosts do not allow to use this function and due to this your wordpress blog will not function properly. There is an alternative available to use Wordpress 2.7 without enabling curl_exec() function.
First download this plugin and install it:
http://trac.wordpress.org/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.
If you are not able to activate the plugin you can ignore the above step.
Now, open functions.php which is in your theme directory and add the following code:
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.
Added: You will need to add above code in php block and put at the end of function.php file.
Thanks to Otto42 for his advice and solution.
Contact us at support@webhostingdiscussion.net if you want us to troubleshoot this problem.
Kailash
Related Posts
- WordPress 2.7 is coming to WordPress.com on Thursday, December 4, 2008
- How to upgrade to Wordpress 2.7
- WordPress 2.8 is available now
Comments
-
watch one tree hill
-
Kailash
-
Kailash
-
misterman
-
Henry
-
Kain
-
Nick





