• Resolved bannorb

    (@bannorb)


    I have a Wordfence report that shows http instead of https for a site with SSL. Is this because it was originally http when I setup Wordfence or is there a setting I missed?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @bannorb,

    Can you run the following query on your site to see if it returns https:// or https://?

    SELECT name, val from wp_wfconfig WHERE name = "wp_home_url" OR name = "wp_site_url";

    If it is, you will need to run this query to update it:

    UPDATE wp_wfconfig SET val = "https://your-site.com" WHERE name = "wp_home_url" OR name = "wp_site_url";

    Change "https://your-site.com" to the address of your site.

    Dave

    Thread Starter bannorb

    (@bannorb)

    Hi @wfdave

    Do I run this in phpmyadmin or can I just check those settings in phpmyadmin?

    Thanks for your help with this.

    Hi again,

    Yup, you can simply check for the specific row within the wp_wfconfig table. You can also run the query within PhpMyAdmin to check / update the row.

    Dave

    Thread Starter bannorb

    (@bannorb)

    Hi @wfdave

    Thanks. The rows do show https

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Wordfence report that shows http instead of https for a site with SSL’ is closed to new replies.