• After we changed from http:// to https:// the front end is working, but not the backend.

    In the wp-config.php we have those lines in (on a Bitnami Installation, AWS, RDS):

    if ( defined( ‘WP_CLI’ ) ) {
    $_SERVER[‘HTTP_HOST’] = ‘localhost’;
    }

    define(‘WP_SITEURL’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/’);
    define(‘WP_HOME’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/’);

    The front end shows all okay, no error or so. But the backend is like “frozen” and us having mixed content (http/https). Some parts are working, some are not working. A search & replace for example is not working, and I am not able to save into the database either.

    What could this issue be? What could I do to solve it?

    Regards,
    Simon

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

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WP Home and Site URL grayed out’ is closed to new replies.