Wordpress WP_CACHE_KEY_SALT value is wrong in wp-config.php file The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceHow to keep two MySQL databases in sync?Visual editor not working in wordpress 3.8.1?FORCE_SSL_ADMIN only for the admin areaour website is showing some code instead of loadingChanging the domain name causes my image to not load in WordpressResetting WP_HOME?Wordpress site would not work after changing siteurl and homesubdirectories blog post wordpress not shown in laravelWordpress/nginx wp-admin stuck in refresh loopWordPress Visit Site is pointing to another URL

How do I add random spotting to the same face in cycles?

What is this lever in Argentinian toilets?

What force causes entropy to increase?

Why can't devices on different VLANs, but on the same subnet, communicate?

Sort a list of pairs representing an acyclic, partial automorphism

Does Parliament need to approve the new Brexit delay to 31 October 2019?

In horse breeding, what is the female equivalent of putting a horse out "to stud"?

Are my PIs rude or am I just being too sensitive?

Keeping a retro style to sci-fi spaceships?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

I could not break this equation. Please help me

Wall plug outlet change

Road tyres vs "Street" tyres for charity ride on MTB Tandem

How to stretch delimiters to envolve matrices inside of a kbordermatrix?

Can withdrawing asylum be illegal?

How to test the equality of two Pearson correlation coefficients computed from the same sample?

How did passengers keep warm on sail ships?

Can the prologue be the backstory of your main character?

What do you call a plan that's an alternative plan in case your initial plan fails?

"... to apply for a visa" or "... and applied for a visa"?

What LEGO pieces have "real-world" functionality?

How are presidential pardons supposed to be used?

ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?

What information about me do stores get via my credit card?



Wordpress WP_CACHE_KEY_SALT value is wrong in wp-config.php file



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceHow to keep two MySQL databases in sync?Visual editor not working in wordpress 3.8.1?FORCE_SSL_ADMIN only for the admin areaour website is showing some code instead of loadingChanging the domain name causes my image to not load in WordpressResetting WP_HOME?Wordpress site would not work after changing siteurl and homesubdirectories blog post wordpress not shown in laravelWordpress/nginx wp-admin stuck in refresh loopWordPress Visit Site is pointing to another URL



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I was just looking at my wp-config.php file for my live wordpress site and I notice that the value for "WP_CACHE_KEY_SALT" is pointing to the old dev site (feedmybeta), not our live site.



What does this do and should I change it to the live site address? I'm scared to change it without understanding what it's doing.



Thanks!



The code looks like this -



/** Enable W3 Total Cache */
define('WP_CACHE', true); // Added by W3 Total Cache

define('WP_DEBUG_DISPLAY', false);
define('WP_DEBUG_LOG', false);
define('CONCATENATE_SCRIPTS', false);
$redis_server = array(
'host' => 'localhost',
'port' => 6379,
'database' => 0, // Optionally use a specific numeric Redis database. Default is 0.^M
);

define('WP_CACHE_KEY_SALT', 'flowersforeveryone.feedmybeta.com');
define('WP_AUTO_UPDATE_CORE', false);// This setting was defined by WordPress Toolkit to prevent WordPress auto-updates. Do not change it to avoid conflicts with the WordPress Toolkit auto-updates feature.^M
define('FORCE_SSL_ADMIN', true);

define( 'WP_SITEURL', 'https://flowersforeveryone.co.za' );
define( 'WP_HOME', 'https://flowersforeveryone.co.za' );









share|improve this question

















  • 1





    This isn't part of the native WP code so it presumably part of W3 Total Cache. Did you try their documentation or support?

    – FluffyKitten
    Mar 8 at 18:54

















0















I was just looking at my wp-config.php file for my live wordpress site and I notice that the value for "WP_CACHE_KEY_SALT" is pointing to the old dev site (feedmybeta), not our live site.



What does this do and should I change it to the live site address? I'm scared to change it without understanding what it's doing.



Thanks!



The code looks like this -



/** Enable W3 Total Cache */
define('WP_CACHE', true); // Added by W3 Total Cache

define('WP_DEBUG_DISPLAY', false);
define('WP_DEBUG_LOG', false);
define('CONCATENATE_SCRIPTS', false);
$redis_server = array(
'host' => 'localhost',
'port' => 6379,
'database' => 0, // Optionally use a specific numeric Redis database. Default is 0.^M
);

define('WP_CACHE_KEY_SALT', 'flowersforeveryone.feedmybeta.com');
define('WP_AUTO_UPDATE_CORE', false);// This setting was defined by WordPress Toolkit to prevent WordPress auto-updates. Do not change it to avoid conflicts with the WordPress Toolkit auto-updates feature.^M
define('FORCE_SSL_ADMIN', true);

define( 'WP_SITEURL', 'https://flowersforeveryone.co.za' );
define( 'WP_HOME', 'https://flowersforeveryone.co.za' );









share|improve this question

















  • 1





    This isn't part of the native WP code so it presumably part of W3 Total Cache. Did you try their documentation or support?

    – FluffyKitten
    Mar 8 at 18:54













0












0








0


1






I was just looking at my wp-config.php file for my live wordpress site and I notice that the value for "WP_CACHE_KEY_SALT" is pointing to the old dev site (feedmybeta), not our live site.



What does this do and should I change it to the live site address? I'm scared to change it without understanding what it's doing.



Thanks!



The code looks like this -



/** Enable W3 Total Cache */
define('WP_CACHE', true); // Added by W3 Total Cache

define('WP_DEBUG_DISPLAY', false);
define('WP_DEBUG_LOG', false);
define('CONCATENATE_SCRIPTS', false);
$redis_server = array(
'host' => 'localhost',
'port' => 6379,
'database' => 0, // Optionally use a specific numeric Redis database. Default is 0.^M
);

define('WP_CACHE_KEY_SALT', 'flowersforeveryone.feedmybeta.com');
define('WP_AUTO_UPDATE_CORE', false);// This setting was defined by WordPress Toolkit to prevent WordPress auto-updates. Do not change it to avoid conflicts with the WordPress Toolkit auto-updates feature.^M
define('FORCE_SSL_ADMIN', true);

define( 'WP_SITEURL', 'https://flowersforeveryone.co.za' );
define( 'WP_HOME', 'https://flowersforeveryone.co.za' );









share|improve this question














I was just looking at my wp-config.php file for my live wordpress site and I notice that the value for "WP_CACHE_KEY_SALT" is pointing to the old dev site (feedmybeta), not our live site.



What does this do and should I change it to the live site address? I'm scared to change it without understanding what it's doing.



Thanks!



The code looks like this -



/** Enable W3 Total Cache */
define('WP_CACHE', true); // Added by W3 Total Cache

define('WP_DEBUG_DISPLAY', false);
define('WP_DEBUG_LOG', false);
define('CONCATENATE_SCRIPTS', false);
$redis_server = array(
'host' => 'localhost',
'port' => 6379,
'database' => 0, // Optionally use a specific numeric Redis database. Default is 0.^M
);

define('WP_CACHE_KEY_SALT', 'flowersforeveryone.feedmybeta.com');
define('WP_AUTO_UPDATE_CORE', false);// This setting was defined by WordPress Toolkit to prevent WordPress auto-updates. Do not change it to avoid conflicts with the WordPress Toolkit auto-updates feature.^M
define('FORCE_SSL_ADMIN', true);

define( 'WP_SITEURL', 'https://flowersforeveryone.co.za' );
define( 'WP_HOME', 'https://flowersforeveryone.co.za' );






php wordpress






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 8 at 13:40









MichelleMichelle

878




878







  • 1





    This isn't part of the native WP code so it presumably part of W3 Total Cache. Did you try their documentation or support?

    – FluffyKitten
    Mar 8 at 18:54












  • 1





    This isn't part of the native WP code so it presumably part of W3 Total Cache. Did you try their documentation or support?

    – FluffyKitten
    Mar 8 at 18:54







1




1





This isn't part of the native WP code so it presumably part of W3 Total Cache. Did you try their documentation or support?

– FluffyKitten
Mar 8 at 18:54





This isn't part of the native WP code so it presumably part of W3 Total Cache. Did you try their documentation or support?

– FluffyKitten
Mar 8 at 18:54












1 Answer
1






active

oldest

votes


















1














So far as I know, WP_CACHE_KEY_SALT is not part of official WordPress, but a convention used by a variety of cache servers. Its value is essentially a site ID, and becomes important when several WordPress sites use the same cache server, to avoid cache collisions. If one site has the value of some other site, but the other site doesn't use that cache, collisions won't arise, so in theory all should be okay. But it could cause confusion, and is an accident waiting to happen, so it would be better to change the value. (And, yes, after the change, there would be a slow period while the cache fills again. That could probably be sidestepped if its critical.)






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55064427%2fwordpress-wp-cache-key-salt-value-is-wrong-in-wp-config-php-file%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    So far as I know, WP_CACHE_KEY_SALT is not part of official WordPress, but a convention used by a variety of cache servers. Its value is essentially a site ID, and becomes important when several WordPress sites use the same cache server, to avoid cache collisions. If one site has the value of some other site, but the other site doesn't use that cache, collisions won't arise, so in theory all should be okay. But it could cause confusion, and is an accident waiting to happen, so it would be better to change the value. (And, yes, after the change, there would be a slow period while the cache fills again. That could probably be sidestepped if its critical.)






    share|improve this answer



























      1














      So far as I know, WP_CACHE_KEY_SALT is not part of official WordPress, but a convention used by a variety of cache servers. Its value is essentially a site ID, and becomes important when several WordPress sites use the same cache server, to avoid cache collisions. If one site has the value of some other site, but the other site doesn't use that cache, collisions won't arise, so in theory all should be okay. But it could cause confusion, and is an accident waiting to happen, so it would be better to change the value. (And, yes, after the change, there would be a slow period while the cache fills again. That could probably be sidestepped if its critical.)






      share|improve this answer

























        1












        1








        1







        So far as I know, WP_CACHE_KEY_SALT is not part of official WordPress, but a convention used by a variety of cache servers. Its value is essentially a site ID, and becomes important when several WordPress sites use the same cache server, to avoid cache collisions. If one site has the value of some other site, but the other site doesn't use that cache, collisions won't arise, so in theory all should be okay. But it could cause confusion, and is an accident waiting to happen, so it would be better to change the value. (And, yes, after the change, there would be a slow period while the cache fills again. That could probably be sidestepped if its critical.)






        share|improve this answer













        So far as I know, WP_CACHE_KEY_SALT is not part of official WordPress, but a convention used by a variety of cache servers. Its value is essentially a site ID, and becomes important when several WordPress sites use the same cache server, to avoid cache collisions. If one site has the value of some other site, but the other site doesn't use that cache, collisions won't arise, so in theory all should be okay. But it could cause confusion, and is an accident waiting to happen, so it would be better to change the value. (And, yes, after the change, there would be a slow period while the cache fills again. That could probably be sidestepped if its critical.)







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 8 at 20:24









        Loren RosenLoren Rosen

        708




        708





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55064427%2fwordpress-wp-cache-key-salt-value-is-wrong-in-wp-config-php-file%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved