I'm trying to configure automatic updates for Wordpress for some days now. But i can't find a good manual or example online.
To make all updates happen, i have added the code below to my wp-config.php after "require_once(ABSPATH . 'wp-settings.php’);" , but what did i do wrong?
/** **** END OF wp-config.php file ****** */
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
/** AUTO UPDATE */
define( 'WP_AUTO_UPDATE_CORE', true );
/** update filters specifically *//
add_filter( 'allow_dev_auto_core_updates', '__return_false' );
add_filter( 'allow_minor_auto_core_updates', '__return_true' );
add_filter( 'allow_major_auto_core_updates', '__return_true' );
add_filter( 'auto_update_plugin', '__return_true' );
add_filter( 'auto_update_theme', '__return_true' );
add_filter( 'auto_update_translation', '__return_true' );
I'm using the last Wordpress version 3.9.1 right now after updating manually.