Real automated and unattended wordpress upgrade including plugins

I’m not aware of any solutions for iterating through and automatically updating your list of plug-ins, but my guess is that any system that can automatically update WordPress itself can be modified to update everything in fairly short order. That said, I know of two good ways to update WordPress automatically: WP Remote This is … Read more

Update to older wordpress version from admin?

You can hook on option_update_core and edit the update url, as a plugin you can do something like this (Remember to disable the plugin after updating wordpress) add_filter(‘option_update_core’,’wpse_26750′); add_filter(‘transient_update_core’,’wpse_26750′); function wpse_26750($options){ global $wp_version; $updates=array( ‘2.5’=>’http://wordpress.org/wordpress-2.5.zip’, ‘2.7.1’=>’http://wordpress.org/wordpress-2.7.1.zip’, ‘2.8’=>’http://wordpress.org/wordpress-2.8.zip’, ‘2.8.1’=>’http://wordpress.org/wordpress-2.8.1.zip’, ‘2.8.3’=>’http://wordpress.org/wordpress-2.8.3.zip’, ); $currentUpdate=$options->updates[0]; //Add Previous updates skipping the ones already passed foreach($updates as $version=>$updateUrl){ if( version_compare($wp_version,$version) < … Read more

How can I manually upgrade translations?

quick-and-dirty hint to solve this problem: find the function list_translation_updates() in wp-admin/update-core.php $updates = wp_get_translation_updates(); if ( ! $updates ) <- locate the if … } else { <- add this print_r ( $updates ); } add the else-case and save the file reload the dashboard page and you will get the desired information.