These are two unrelated things:
For the blank settings page we need some more info.
– please first try to re-save the permalinks in settings/permalinks.
– Does it also happen with all plugins deactivated? If not, please post the plugin which caused the issue, then we can debug that and create a fix.
For the warning: please change the site and home urls in your wp-config.php to https. The url definitions prevent the site from changing to https.
/**
* The WP_SITEURL and WP_HOME options are configured to access from any hostname or IP address.
* If you want to access only from an specific domain, you can modify them. For example:
* define(‘WP_HOME’,’http://example.com’);
* define(‘WP_SITEURL’,’http://example.com’);
*
*/
Change url get error 500 to many redirect
plugin link
https://postimg.cc/jWnKkf7D
blank page nothing show
/wp-json/reallysimplessl/v1/fields/get?false&nonce=80a78c9e8e&token=cjjjd:1 Failed to load resource: the server responded with a status of 404 ()
createError.js:16 Uncaught (in promise) Error: Request failed with status code 404
at createError (createError.js:16:1)
at settle (settle.js:17:1)
at XMLHttpRequest.onloadend (xhr.js:66:1)
/wp-json/reallysimplessl/v1/tests/get_modal_status?state=undefined&nonce=80a78c9e8e&token=ivxyu&data=undefined:1 Failed to load resource: the server responded with a status of 404 ()
createError.js:16 Uncaught (in promise) Error: Request failed with status code 404
at createError (createError.js:16:1)
at settle (settle.js:17:1)
at XMLHttpRequest.onloadend (xhr.js:66:1)
@mukesh24932 Let’s first look at the redirect loop.
It is possible your server setup requires the $_SERVER[‘https’] = ‘on’; in the wp-config.php:
https://really-simple-ssl.com/redirect-loop-wordpress-admin-not-front-end/
if, with the above added, you still have a redirect loop, please check for a redirect to http in your .htaccess file, or if you have a plugin active which redirects to http. For more details on this, see this article:
https://really-simple-ssl.com/my-website-is-in-a-redirect-loop/