Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Coupe WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Comment désactiver les mises à jour automatiques dans WordPress

Note éditoriale : Nous percevons une commission sur les liens des partenaires sur WPBeginner. Les commissions n'affectent pas les opinions ou les évaluations de nos rédacteurs. En savoir plus sur Processus éditorial.

Saviez-vous que WordPress peut mettre à jour automatiquement votre site ? Dans certains cas, cela peut également concerner les extensions et les thèmes.

Malgré les avantages en termes de sécurité, il existe un léger risque que ces mises à jour en arrière-plan puissent endommager votre site.

Dans cet article, nous allons vous afficher comment désactiver les mises à jour automatiques sur WordPress, afin que vous puissiez vous mettre à jour manuellement par vous-même.

Disabling automatic updates in WordPress

Pourquoi WordPress se met-il automatiquement à jour ?

WordPress met automatiquement à jour le cœur du logiciel WordPress pour des raisons de sécurité.

Parfois, il peut également mettre à jour une extension ou un thème pour corriger une menace potentielle. Par exemple, une extension ou un thème WordPress peut être mis à jour pour retirer une vulnérabilité critique. Si cette extension ou ce thème est utilisé par un grand nombre de sites, l’équipe du cœur de WordPress peut publier une mise à jour automatique.

En dehors de ces situations, WordPress vous laisse décider du moment où vous souhaitez installer les mises à jour.

Nous ne recommandons pas d’inactif les mises à jour automatiques de WordPress. Il s’agit d’une fonctionnalité de sécurité importante.

Cependant, dans certaines situations rares, les mises à jour peuvent casser votre site ou affecter sa fonctionnalité. Vous risquez alors de perdre des clients/clientes.

Si vous êtes sûr de pouvoir gérer vous-même les mises à jour manuelles, vous pouvez en toute sécurité désactiver les mises à jour automatiques dans WordPress.

Tutoriel vidéo

Subscribe to WPBeginner

Si vous préférez des instructions écrites, continuez à lire.

Méthode 1. Désactiver les mises à jour automatiques de WordPress à l’aide d’un code (Recommandé)

Vous pouvez désactiver les mises à jour automatiques dans WordPress en ajoutant cette ligne de code dans votre fichier wp-config.php:

define( 'WP_AUTO_UPDATE_CORE', false );

Cela désactivera toutes les mises à jour automatiques de WordPress.

Important : Assurez-vous de lire notre article sur la façon de modifier en toute sécurité le fichier wp-config.php dans WordPress pour obtenir des modifications étape par étape.

Si vous souhaitez recevoir les mises à jour mineures du cœur, mais désactiver les mises à jour des thèmes et des plugins, vous pouvez le faire en ajoutant les filtres suivants dans le fichier functions.php de votre thème.

Désactiver les mises à jour automatiques des extensions WordPress :

add_filter( 'auto_update_plugin', '__return_false' );

Désactiver les mises à jour automatiques des thèmes WordPress :

add_filter( 'auto_update_theme', '__return_false' );

Mais une façon plus simple et plus sûre de le faire est d’utiliser l’extension d’extraits de code WPCode.

WPCode

WPCode facilite l’ajout d’extraits de code dans WordPress sans modifier le fichier functions.php de votre thème. Ainsi, vous n’avez pas à vous soucier de casser votre site.

De plus, il est livré avec une bibliothèque de code intégrée où vous pouvez trouver des extraits de code PHP pour des extraits de code populaires comme la désactivation des mises à jour automatiques de WordPress, la désactivation de l’API REST, permettant les téléversements de fichiers SVG, la désactivation des commentaires, et plus encore.

Il n’est donc pas nécessaire d’installer tout un tas d’extensions à usage unique.

Note : L’extension gratuite WPCode contient tout ce dont vous avez besoin pour ajouter du code personnalisé dans WordPress. Si vous voulez des fonctionnalités avancées comme une bibliothèque de snippets dans le cloud privé, des pixels de conversion, des extraits planifiés, des révisions de code, et plus encore, vous pouvez mettre à niveau vers WPCode Pro.

Pour Premiers pas, vous devez installer et activer l’extension gratuite WPCode. Si vous avez besoin d’aide, consultez notre guide sur l’installation d’une extension WordPress.

Une fois le plugin activé, dirigez-vous vers  » Code Snippets «  Bibliothèque depuis votre tableau de bord WordPress.

Ensuite, recherchez l’extrait « Désactiver les mises à jour automatiques » et cliquez sur le bouton « Utiliser l’extrait ».

Choose the Disable Automatic Updates snippet from WPCode library

WPCode ajoutera alors automatiquement l’extrait de code et sélectionnera la méthode d’insertion appropriée.

L’extrait de code comporte trois filtres permettant de désactiver les mises à jour du cœur de WordPress, les mises à jour des extensions et les mises à jour des thèmes.

WPCode's Disable Automatic Updates snippet

Si vous ne souhaitez pas utiliser l’un de ces filtres, il vous suffit de modifier le code pour ajouter un // audébut de la ligne du filtre.

Par exemple, l’ajout d’un // à la ligne de filtre des mises à jour automatiques du cœur l’empêchera de s’exécuter. Ainsi, vous obtiendrez toujours des mises à jour automatiques pour le cœur, mais pas pour les extensions et les thèmes.

Edit the Disable Automatic Update filters

Ensuite, il vous suffit de permuter l’interrupteur de « Inactif » à « Actif ».

Cliquez ensuite sur le bouton « Mise à jour ».

Activate and update snippet in WPCode

Voilà, c’est fait. Vous avez maintenant désactivé les mises à jour automatiques dans WordPress.

Méthode 2. Configurer et désactiver les mises à jour automatiques de WordPress avec une extension

Une autre façon de désactiver les mises à jour automatiques de WordPress est d’installer et d’activer l’extension Easy Updates Manager. Si vous n’êtes pas sûr de savoir comment faire, jetez un coup d’œil à notre guide étape par étape sur l’installation d’une extension WordPress.

Une fois l’extension activée, rendez-vous dans Tableau de bord  » Options de mise à jour pour définir vos Réglages.

Configuring the settings for the Easy Updates Manager plugin

Vous pouvez choisir de « Désactiver toutes les mises à jour », mais nous ne recommandons pas cette option. Principalement parce qu’elle empêchera l’apparition de toutes les notifications de mise à jour.

Au lieu de cela, vous devez choisir les Réglages que vous souhaitez. Vous pouvez désactiver les mises à jour automatiques des extensions et des thèmes, mais laisser activées les mises à jour automatiques du cœur de WordPress.

Disabling automatic plugin and theme updates while leaving minor core auto updates enabled

Note : Si vous choisissez « Désactiver les mises à jour des extensions » et « Désactiver les mises à jour des thèmes » au lieu de « Désactiver les mises à jour automatiques », vous ne verrez même pas les notifications de mise à jour dans vos listes d’extensions et de thèmes.

Easy Updates Manager se connecte à ce qui a été connecté, de sorte qu’en cas de problème sur votre site, vous pouvez revenir à une version précédente. Pour le voir, allez dans Tableau de bord  » Options de mises à jour et cliquez sur l’onglet ‘Journaux’.

The logs tab of the Easy Updates Manager plugin

Il existe également une version premium d’Easy Updates Manager, qui offre de nombreuses options supplémentaires.

Par exemple, il s’intègre à UpdraftPlus, l’une des extensions de sauvegarde WordPress les plus populaires, afin que vous puissiez exécuter automatiquement une sauvegarde de votre site avant l’application des mises à jour.

Avantages et inconvénients des mises à jour automatiques de WordPress

Vous savez maintenant comment désactiver les mises à jour automatiques, mais devez-vous les désactiver ? Il n’y a pas de bonne réponse et cela dépend de vous et de votre site.

Sur nos sites, nous avons désactivé les mises à jour automatiques des plugins et des thèmes, tout en conservant les mises à jour mineures du cœur.

Examinons les avantages et les inconvénients des mises à jour automatiques. Vous pourrez ainsi décider de désactiver ou non les mises à jour automatiques sur votre site.

Avantages des mises à jour automatiques sur WordPress

Les mises à jour automatiques sont très utiles pour la sécurité de WordPress. De nombreux utilisateurs/utilisatrices oublient de mettre à jour leurs extensions ou le cœur de leur installation WordPress.

Si les mises à jour automatiques de WordPress sont activées, vous n’avez pas à vous soucier de mettre à jour votre site chaque fois qu’une mise à jour mineure de WordPress est publiée. Ces mises à jour sont diffusées à des fins de maintenance et de sécurité.

Dans le passé, les mises à jour automatiques étaient quelque chose que vous obteniez uniquement en payant pour un hébergement WordPress géré. Aujourd’hui, elles sont accessibles à tous (au moins pour les versions mineures).

Vous savez également qu’en cas de problème de sécurité crucial avec WordPress ou une extension populaire, WordPress effectuera automatiquement une mise à jour. Même si vous êtes occupé ou absent, votre site restera sécurisé.

Si vous avez plusieurs sites, les mises à jour automatiques peuvent vous faire gagner beaucoup de temps. Et même si vous avez uniquement un site, vous préférerez peut-être avoir l’esprit tranquille en sachant que WordPress s’occupe de tout.

Inconvénients des mises à jour automatiques sur WordPress

Le cœur de l’équipe WordPress, responsable de la publication des mises à jour, s’assure qu’elles se déroulent sans accroc.

Cependant, il y a une petite chance que les mises à jour automatiques puissent endommager votre site. D’après notre expérience, les versions mineures n’ont encore endommagé aucun de nos sites.

C’est parce que nous suivons les meilleures pratiques et que nous ne modifions aucun fichier du cœur. Si vous modifiez les fichiers du cœur de WordPress, alors ces mises à jour automatiques peuvent les surcharger.

Si WordPress estime nécessaire de publier une mise à jour de sécurité pour un thème que vous utilisez, il y a de fortes chances que votre site soit endommagé. Ceci est particulièrement vrai si vous avez modifié les fichiers de votre thème.

Les mises à jour automatiques des extensions peuvent également endommager votre site. Il y a tout simplement trop de variables, comme les différents environnements de serveur et les combinaisons d’extensions.

Maintenant, il est important de savoir que ces mises à jour ne briseront pas la grande majorité des sites. Malgré tout, vous ne voulez peut-être pas prendre le risque.

Un autre inconvénient est que vous ne recevrez pas toujours automatiquement une notification lorsque votre site est mis à jour.

Dois-je désactiver les mises à jour automatiques de WordPress ?

En fait, c’est à vous de prendre cette décision.

Pour la plupart des débutants et la grande majorité des sites WordPress, les mises à jour automatiques sont inoffensives et vous ne devriez pas les désactiver.

Toutefois, si vous stockez des produits en ligne ou si vous ne voulez pas perdre des clients à cause d’un site défectueux, vous pouvez désactiver les mises à jour automatiques.

Confirmez toutefois que vous installez manuellement ces mises à jour en temps voulu pour garantir la sécurité de votre site.

Nous espérons que cet article vous a aidé à apprendre comment désactiver les mises à jour automatiques sur WordPress.

Que vous utilisiez des mises à jour automatiques ou manuelles, il est crucial de vous assurer que vous avez des sauvegardes régulières de votre site. Vous pouvez également consulter notre guide sur la façon de faire une sauvegarde de votre site WordPress ou voir notre comparatif des meilleures extensions de sécurité WordPress.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Divulgation : Notre contenu est soutenu par les lecteurs. Cela signifie que si vous cliquez sur certains de nos liens, nous pouvons gagner une commission. Consultez comment WPBeginner est financé, pourquoi cela compte et comment vous pouvez nous soutenir. Voici notre processus éditorial.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

L'ultime WordPress Toolkit

Accédez GRATUITEMENT à notre boîte à outils - une collection de produits et de ressources liés à WordPress que tous les professionnels devraient avoir !

Reader Interactions

102 commentairesLaisser une réponse

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Jiří Vaněk says

    Thank you for the article. It saved me from constantly updating WordPress at the moment a new version was released. After reverting to the old version from a backup, WordPress immediately tried to update automatically. This was a significant help.

  3. praddep says

    I have found function.php file using my file manager in Cpanel but when I open function.php to edit there are a lot of coding and I am not understanding where to paste this code { add_filter( ‘auto_update_plugin’, ‘__return_false’ ); }

    • WPBeginner Support says

      You would normally want to add it to the bottom for ease of removal in the future as well as avoiding adding it somewhere where it would have an issue

      Administrateur

  4. Jes says

    Every time WP autoupdates it screws up my sites. It’s been an absolute nightmare and now I’m dealing with how to fix a site yet again that it messed up the theme and I do not customize. It’s the Divi theme. Craziness, I miss the old ways of web design, this is a constant nightmare.

  5. Yan Cruz says

    I been having trouble with the hestia theme although I’m using a child theme. It keeps changing the footer to the default although I coded to make sure it changed to what I want.

    Which of these forms would benefit me the most to accomplish what I seek?

    My knowledge of php is alright, so I can try coding if it is the better choice.

    • WPBeginner Support says

      Hi Yan,

      We would suggest that you contact theme author to figure out the most effective way to modify the footer. If you are using easy updates manager plugin, then you can disable all theme updates.

      Administrateur

  6. David says

    Hello.

    I have just installed this plugin. Can someone please confirm to me that even though I have disabled all updates (plugins, themes, WP updates, etc), I will still receive notification that an update is available by simply logging into my WP Admin?

    If this is the case, when I do a manual update, will I have to disable this plugin to complete the action?

    Thanks all,
    David.

    • Steven says

      David, I appears that this question was asked about eight months ago, so I will go ahead and answer for all future viewers asking themselves the same question. I assume you have already found the answer…

      When you disable automatic updates with a plugin or using the PHP constant variables, the WP-Admin will still show that there are updates available. At this point, you will have to manually update the core, themes, or plugins within the Wp-Admin interface or a remote manager.

      I hope this was helpful.

  7. Chaudhary Sushil says

    Thank you for the guideline how to stop auto update of WordPress version.
    My story is – the first time I face version auto update problem on 4.8.3 that is working good for front page but I stuck to open my dashboard. It shows fatal error. My mind is going black what I do for this how to recover. But the jetpack plugin saves the site by going on wordpress.com and disabling installed plugins one by one and at last, I found the plugging that was not updated from last 2 years and that was causing a problem.
    I spend 6 months on the site and there is too much information that way I scared to follow manual process to go in code via hosting or ftp and change or rename folders one by one and check the reflection.
    Because on this process one big problem is to fully break site on that case the backup is the way to go back on the previous stage but I also still not try how to recover from a backup and this is one of the most dangerous for right now.

    I am sharing this story with you all because what I fell in that situation was too bad and I don’t what any to put them self in this situation, So it’s best to practice for all these types of a problem at starting face though demos. It’s best to stop our self-entering in the red zone.

  8. Stefano says

    As in the official wordpress site:

    Only:

    define( ‘AUTOMATIC_UPDATER_DISABLED’, true );

    will disable all automatic updates.

    define( ‘WP_AUTO_UPDATE_CORE’, false );

    will disable only wp core auto updates as the definition says.

  9. Renato Frota says

    The recommendation to use « add_filter » on wp-config.php is noobish and tend to cause problems – along to break wp-cli (wp-cli.org) to work with your WordPress install.

    Use instead:

    define( ‘AUTOMATIC_UPDATER_DISABLED’, true );

    And ALWAYS put it BEFORE the line that says « That’s it, stop editing! »

  10. George Applebee says

    My horror story was about falling for the concept that backing up my website would protect me from a WP major upgrade.

    After manually upgrading my site with a major upgrade, the site broke, so i went to my favorite save my *ss backup software Updraft plus, only to find that the WP upgrade changed the database structure and file names. The backup was worthless because the database couldn’t be overwritten.

    Arghh! I had to find an older version of WP and start from scratch with a new DB and WP install. I could then use my backup software to get my client’s website back by installing the plugin. Be aware, WP upgrades can totally change the database structure!

  11. pabster says

    After months of having auto updates totally disabled with the ‘WP_AUTO_UPDATE_CORE’ false tweak, my WP has managed to auto update on its own!! I was in 3.9 and now all of a sudden I’m in 4.2.2. How’s that possible? Do those folks still have some secret, hidden ace under the sleeve for forcing auto update on people like me?

    • pabster says

      It’s a totally commercial thing. Nothing really much to do with « security » and that kind of mantra. We’re in a capitalistic world, and everything is ruled by money. Even « free » software is. :-)

  12. nathi says

    Updating automatically is a no go for me, alot of customization is in place and needs to be measured against new wordpress versions before proceeding to update-definitely will use this Code. Thanx

    • grisales says

      Of course it can happen!

      When you download a theme you should check which WP Version is it compatible with.

      Always keep on mind that you shouldn’t update the core although there is an update release available unless your plug-ins, and customizations have been tested to be compatible with the version you want to update to by you or the authors of such extensions.

  13. Jan Fikar says

    For me, I hate when something si updated (rewrited) with no control or whatsoever. The might be not compatble plugin having all webpage killed.

  14. Patrick Mercer says

    Just experienced an automatic update and even though it worked fine, I found this tip and turned off the auto updates as fast as I could. I hate it when something suddenly starts working different and I have to spend time trying to figure out why. I live my life at my pace, not yours.

  15. ElDerecho says

    Automatic updates are a phenomenally bad idea for web applications. If they screw up the update (like MS has done with Windows updates a number of times), they will be potentially hosing millions of public sites that businesses rely on. Or worse, if the system is exploited, they’d be giving access to millions of servers to hackers, spammers, and who knows who else.
    No to mention, its just plain dangerous to allow executable files (PHP in this case) to be writable by the web server.
    Anyways, thanks for the post.

  16. RobS says

    I agree this is a bad policy and they should create an on/off option in the General Settings. I want to update in a timely manner, but I have run into many situations where a plug-in doesn’t work with the latest WP upgrade. I usually have to wait until the plug-in dev fixes their plug-ins.

    If WP could guarantee all plugins are upgraded to work with new updates before they deploy, then sure, it makes sense. But that will never happen in an open source world.

  17. Nicole Kavanagh says

    I totally agree with the WordPress Automatic Updates.

    As a business owner and selling wordpress extensions, our business model arrived just in time.

    Long gone are the days when developers can sell extensions with a lifetime of Updates and Support, who in any business offers a service which is not payed for? It is just not viable or sustainable for any business.

    The up keep for maintaining WordPress and e-commerce extensions to be compatible with newer versions is very demanding on any team.

    This will really add a new dimension for the developers selling extensions that are not maintained. Usually the cheaper extensions, eventually you may find that these developers will not continue to sell their product.

    We started out selling all of our products at a cost of $** offering 1 year of Updates and Support included in this price, any subsequent years thereafter require a new Licence key at a discounted price to continue to receive: Activation, Updates and Support.

    The WordPress automatic updates make sense to us, this is our business and maintaining all of our extensions is what we do.
    It does take a lot of time and testing, and then of course the product information, product descriptions, product screen casts, product documentation all needs to be updated as well.

    There may be some clients that never updated their WordPress, e-commerce extensions, and eventually something will break.

    But then there are also the clients that update their extensions the minute there is a notification there is an Update.

    If all developers are in the same boat with maintaining their code to suit any new versions, it is a level playing field l agree with.

    Nicole from Extension Works.

    • Mac Gyver says

      Nicole, you are so wrong that I don’t know where to begin.

      First, I did not authorize Yoast to change my update settings, and I’m mad as H__L.

      Second, the rule is NEVER EVER UPDATE BEFORE DOING A WEBSITE BACKUP. When websites do auto update that safety feature is precluded.

      Third, the clumsy auto loading of the WP updates has somehow knocked one of my non-wordpress sites off the internet – Google says:

      « If you are the owner of this web site you have not uploaded (or incorrectly uploaded) your web site. For information on uploading your web site using FTP client software or web design software, click here for FTP Upload Information. »

      That is my oldest website, not wordpress, and the « update hack » that Yoast installed without my permission caused this and more. I have not changed any configuration on the affected website; the auto WP updates to a subdomain of that primary domain caused this.

      Now I have to waste time I had already scheduled to get GoDaddy techs to get my servers straight.

      Believe me, when I finish that task I’ll get Yoast’s attention on social media.

      Edit: There were not one but TWO of my 6 websites knocked offline by the ill-conceived « hack » by Yoast. If you listen closely you can hear me sizzle.

    • WPBeginner Support says

      Mohsin, a better strategy is to create a child theme and make all your changes in the child theme. But if you must stop your theme update, then you can do that by editing the theme header in the style.css file.

      Administrateur

  18. anon says

    Ha! i thought the client had updated the site so i disabled ftp just to find out it’s WordPress default. LOL!

    Never have I heard such a stupid idea in all my time as a developer! How did that get passed – is there an online thread discussing this stupid idea?

  19. Christina says

    Well, I had a site update to 3.8.2 automatically yesterday and when I went to work this morning, the site’s homepage was broken.

    I use genesis framework and a child theme, so I have not edited the core. The site was almost ready to go live, and now I can only hope genesis can help me fix it.

    I have a backup, but reallllllly don’t need the hassle of that, especially as it was taken a few days ago.

    I will definitely be turning off automatic updates and think they are a terrible idea. Too many variables between plugins and theme conflicts to trust something without taking an immediate backup prior to updating. :O(

  20. Javier says

    Ok, but what if a hacker takes control over the wordpress server for updates and then push a malicious update?? Half of the websites of the world down, the biggest DoS ever or every server infected with malware. IM FREAKING OUT!!

  21. Joanna Benson says

    The automatic updates are a bad idea. What about plug-in compatibility issues?! I like to be sure that the principal plug-ins that I use on my website are compatible with the latest version of WordPress BEFORE WordPress is updated. Finding out AFTER when a plug-in breaks my site because it isn’t yet compatible with the latest version of WordPress is a headache that I don’t need. The fact that WordPress wouldn’t have thought about this before implementing the automatic updates is quite surprising!

    • Christian says

      I agree! Qtranslate, for example, is a pain as it is coded with the latest wp version number written into the code …

    • Mark says

      I am very wary of installing plugins unless I absolutely need them.

      Plus I always check with the theme developer about conflicting plugins… I’ve had some bad experiences.

      I recommend only using premium plugins because of support and updates

  22. Nicole says

    I would disable automatic updates because sometimes WordPress updates because a lot of the time it breaks functionality or messes up the layout on the site. This happens when I’m using a theme that doesn’t work with the new version of WordPress, or if my site is integrated with the Yii Framework (PHP MVC architecture). It’s better if i’m able to test out the update on a test site instead of the live site automatically updating.

    Thanks for the information on how to disable!

  23. Todd Nagel says

    Thank you for this, I manage quite a few wordpress sites, not everyone has the budget to be where they would like to be at all times, not all the sites have the ‘best’ of code, some are way old so are using older plugins, lots of things can go wrong in an update..

    WordPress adding this in without ‘warning’ really is kind of wrong in my opinion.

    and my manual update to 3.8 the other day broke a website because the contact form 7 extra plugin for ‘uplicate confirm email’ is outdated..

    as long as you stay within a few updates, your going to be pretty secure, and we always do it on a ‘dev’ folder first..

    T

  24. Mel Brady says

    The last update ruined my good working product. It took a couple days to repair. Is this going to happen on all wordpress updates. I’ve got more to do then fixing my site.

  25. Sharon J says

    i don’t like automatic updates because I would rather wait in case there are bugs. Also, if there is a problem I have 80-100 customers. What if there is a problem on ALL those sites? I am going to disable automatic updates on my site and on future sites for sure.

    • Jocelyn Wing says

      I’m with you Sharon. It’s a disaster waiting to happen. That’s why I am here because I have a client who noticed and complained about why his website look keeps changing.

      Thanks to WordPress community for making the software more secure.

      Thanks for the advice here.

  26. Arend says

    I think I have enough off those peoples who think any non technical computer-user is a moron
    I think that the sheer arrogance of the WordPress developers is something I don’t want
    to deal with any longer, so after 6 years of happy using it’s goodbye to WordPress….
    and on the look-out for a new Cms sytem without developers trying to make my decisions

    • Eni says

      Agree.
      Something pretty strange is going on over the Internet. From G, FB,WP…hosting companies…, « security » softwares….., open source browsers and other software we need to use the Internet….seems like everyone is hurrying over each other to make our life « easier » and « safer » by full beg of automatic updates and other « services » running « on our behalf », with little or no control on our side what’s going on and what’s being done.
      Automation like that very likely may destroy peoples long-years efforts results in a second,
      without anyone being responsible for such effect.
      Coz’ things are complicated and not synchronized to the point that in most cases you would need to spend months if not years to locate where problem(s) arouse from .I doubt anyone of us could deal with such situation. Anyone using WP knows that you need at list 10-20 plugins to make it work per your essential needs. And just coping with plugins and WP updates none of them synchronized with each other, costs you too much time, nerves and energy. Seems like we should be occupied only by doing that.

      Makes no sense.
      Not good.

      • JOhnne says

        Of course it makes sense, it is totally necessary automatic browser updates or we would be stucked in the old ie 6/7 until now with all kind of old css support. You can be angry, but all developpers are thankfull for browser updates, it’s the way microsoft should have done long time ago and we wouldn’t have this crap ie 6 / 7 / 8 versions running until now. We have a major delay in web creativity and innovation today becouse of this, and we are slowing getting of this cenario!

  27. Umm No says

    Brought a site down today with the 3.8.1, didn’t even know this would happen. turned it off on all other sites. Won’t allow that to happen again. Update on a friday so I can spend my weekend cleaning up the mess they make. and then delete all threads started on wp support about broken sites. Seems like they don’t want people to know they break sites and leave it for you to clean up the mass

  28. Barbara says

    My two cents: Automatic updates seem to always happen to me at the most inconvenient time. That’s reason enough to turn them off. Thanks for the article!

  29. Glen says

    I have been a WordPress user since 2007, and since added 3 more websites using WP. I have always updated my own sites when new versions of WP became available. When learning about updates back in 2007 I recall that specific and important instructions were given that all plugins must be disabled before updating to a new version of WP. Therefore, I’ve always done that. Now, with the automatic update for minor versions, my sites are being automatically updated. Does that mean they disable the plugins? If not, what has changed that plugins no longer need to be disabled? I’m a little nervous about this.

    • WPBeginner Support says

      Glen, there is no need to worry about that. During the update, WordPress puts your site in maintenance mood which is just like disabling plugins. It then updates your site and then turns off maintenance mood.

      Administrateur

      • Glen says

        Thanks a whole bunch, support. I probably should have known that. You’ve certainly put me at ease over this. My previous concerns have gone out the window. Again, thank you.

  30. where to add the code? says

    you say what file to add it to. where to we add it in that file? my config file has lots of stuff in it that I dont want to mess up. where do I paste the code in that file? need more info please.

  31. Brian says

    I have two websites that were totally broken last time the updates took place. I have changed core files on http://pizzaspotz.com and http://gotinterviews.com. I am very inexperienced at making child themes. I just don’t seem to be able to do it. Just call me ignorant. But I wonder if I create child themes one day, I could then go ahead and enable automatic updates on these two sites and the auto updates will no longer break the sites.

      • Brian Humek says

        Just had to visit your site again today to double check how to disable these updates. I saw WP had updated some of my sites and I guess I’m forgetting a lot these days. I double checked and found my two sites which were messed up in the last update were indeed disabled.

        Again, kudos to your easy tutorial.

  32. Nathan says

    Will adding this line of code into my configuration file help multi-site installations? I need clarification / verification before running that.

  33. Barbarella a.k.a. The Mad Cat Lady says

    Not happy with being « forced » to have automatic updates without the option of turning them off. Even though I know how to put this code into wp-config.php, other people might not have a clue, and I think we should at least be given an on/off switch in the dashboard where we could have the choice to disable automatic updates if we wanted to.

    Thanks for this snippet of code though. I will apply it to all my sites now (and I have a LOT of WP sites!).

    • Rachel Ramey says

      I absolutely agree. The WordPress user documents themselves specify to ALWAYS BACK UP before updating, and now we don’t have that option because our sites update themselves without asking our permission. And you have to hack the code to turn it off. That’s ridiculous and utterly FOOLISH!

      If they’re going to make this a default, then I’m with you – there needs to be an « off » switch or checkbox in the settings.

  34. Patty Ayers says

    Syed, I’m wondering why the code you provide here seems to be strongly discouraged by Andrew Nacin in this post: http://make.wordpress.org/core/2013/10/25/the-definitive-guide-to-disabling-auto-updates-in-wordpress-3-7/

    « The constant AUTOMATIC_UPDATER_DISABLED can be used to disable the automatic updater entirely. It’s like DISALLOW_FILE_MODS — no changes allowed at all — but it’s specific to the auto updater.

    Don’t use this to block only core updates! You’ll also be blocking a lot of other functionality. You won’t get translation updates (language packs) for core, themes, and plugins. You won’t receive update notifications sent via email to alert you of new WordPress releases. It also disables all opportunity for fine-grained control. »

    Or am I (likely) misunderstanding something?

  35. Erni says

    Are you sure that the code with « true » is right, or is this a mistake and you’ve to add « false » to the code to disable the updates?

    For my self I want to update wordpress alone, without any background updates. It would be cool if you’ve an option to decide yourself to deactivate automatic updates.

  36. Jenny says

    Thank for this tip, I always prefer to test the compatibility of a new version with plugins installed before using it in production

  37. adolf witzeling says

    Thank you for posting this quick tip. I just installed WP 3.7 and although I DO want to run the latest version, I still want to be in control in regard to updates-it just makes me nervous something changing without me being aware of, because if something goes wrong after I make a change at least I have a good idea where to start troubleshooting. I recently installed a plug-in updater (which supposed to automatically update my plug-ins) and all I was left with was a blank screen!!. Took me (bloody beginner) a while to get it back up and running. The plug-ins weren’t the problem the updater was, by ignoring some of the installed versions [i.e. 2.3.1 and ignoring the third digit -the (.1)] Don’t wanna go through that shit again.

Laisser une réponse

Merci d'avoir choisi de laisser un commentaire. Veuillez garder à l'esprit que tous les commentaires sont modérés selon notre politique de commentaires, et votre adresse e-mail ne sera PAS publiée. Veuillez NE PAS utiliser de mots-clés dans le champ du nom. Ayons une conversation personnelle et significative.