Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I have a solution other. You can try
    Add to wp-config.php

    
    define('WP_HOME','https://' . $_SERVER['SERVER_NAME']);
    define('WP_SITEURL','https://' . $_SERVER['SERVER_NAME']); 
    

    Hello,
    You can install plugin (really simple ssl) replace all url to https or execute mysql query change url to https

    UPDATE wp_options SET option_value = replace(option_value, ‘oldurl’, ‘newurl’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
    UPDATE wp_posts SET guid = replace(guid, ‘oldurl’,’newurl’);
    UPDATE wp_posts SET post_content = replace(post_content, ‘oldurl’, ‘newurl’);
    UPDATE wp_postmeta SET meta_value = replace(meta_value,’oldurl’,’newurl’);

Viewing 2 replies - 1 through 2 (of 2 total)