My https has just expired. I have switch my domain from https to http in wp_options table. But all my assets are still on https when I visited website, I got all assets link error with 404. How can I switch my assets back to http?
Site:
My https has just expired. I have switch my domain from https to http in wp_options table. But all my assets are still on https when I visited website, I got all assets link error with 404. How can I switch my assets back to http?
Site: http://www.kingdynasty.com.au
Your best bet would be to run a search and replace on your database. Run a backup first! Ideally you can do that through your host or WPCLI. If not, you could try a plugin like https://wordpress.org/plugins/better-search-replace/
Although getting a new SSL certificate should really be your priority here!
Rocky.
You can try these:
If you can't login to wp-admin > settings to confirm that, you can go to database, wp_options table and look for siteurl and home values
Add these lines to wp-config.php
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
Make sure that you clear the cache from any cache plugins you're using and also from your browser
Also try adding this to wp-config.php (note "false")
define( 'WP_CACHE', false );
You might be using any plugin which is causing this, like ssl insecure content fixer, etc.
Make sure that the site isn't using any dns based redirect
disable all plugins and confirm
change theme to default and check
Let me know any issues with this