• Resolved bauralex

    (@bauralex)


    Hi

    we have your pro plugin on our website and recently finished developing the site… Now it is on a different domain than the staging site and when we got an email from wordfence, e.g. a user signed in, there is the wrong domain inside the mail

    How can I change that?

    Thank you

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @bauralex,

    When you migrated your staging to your live website, some settings in the database were not updated.

    Can you run this query to see if your URLs are up-to-date?

    select name, val from wp_wfconfig where name = 'wp_home_url' or name = 'wp_site_url';

    If it’s not, you can manually update it by using these queries:

    update wp_wfconfig set val = 'https://your_site_url' where name = 'wp_home_url';
    update wp_wfconfig set val = 'https://your_home_url' where name = 'wp_home_url';

    Dave

    Thread Starter bauralex

    (@bauralex)

    Thanks
    the wfconfig entry was false

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change WordPress URL in Mail’ is closed to new replies.