On the page here which is displaying a View it is insecure.
hidden link
Looking in the console I see this message:
"Mixed Content: The page at 'hidden link' was loaded over a secure connection, but contains a form that targets an insecure endpoint 'hidden link'. This endpoint should be made available over a secure connection."
How do I fix this?
Regards,
David
Hello,
Please check these:
1) Make sure you are using the latest version of Toolset plugins, you can download them here:
https://toolset.com/account/downloads/
2) Deactivate other plugins and switch to WordPress default theme 2019, clear cache of your website, and test again.
3) If the problem still persists, please provide database dump file(ZIP file) of your website, I need to test and debug it in my localhost, thanks
https://toolset.com/faq/provide-supporters-copy-site/
Hi Luo,
1. All Toolset files are up to date.
2. I dont have the option of turning off all plugins and switching theme as its alive site with very high visit rate.
3. I have attached a zipped file of the database
Regards,
David
I don't see the database file URL, please provide a downloadable URL for your website database dump file in below private message box, you can put it in your own google drive disk, and share the link. thanks
I can download the file, but it is broken, see screenshot broken-archive.JPG, please check it, thanks
Just downloaded it from We Transfer and opened it with 7-Zip with no issues:
hidden link
Thanks for the details, I have imported your database into my localhost, there isn't similar problem in with a fresh wordpress installation + the latest version of Toolset plugins, see screenshot: 16524.JPG
All the links are using https links.
Since in my localhost, I have done some SQL modification according to our document:
https://toolset.com/faq/how-do-i-migrate-a-wordpress-site-from-one-domain-to-the-other/#2-updating-urls-in-posts-and-custom-fields
I suggest you try this:
1) Dashboard-> Toolset-> WordPress Archive
Find and edit WordPress Archive "Home/Blog Archive" (view's ID: 16524)
edit it, and save it, this should be able to reset the view's link
And test again
2) If the problem is still persist, you can follow above document to run the SQL query in your database with mysql tools, for example:
UPDATE wp_options SET option_value = REPLACE(option_value, '<em><u>hidden link</u></em>', '<em><u>hidden link</u></em>') WHERE option_value NOT LIKE '%{%';
UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, '<em><u>hidden link</u></em>', '<em><u>hidden link</u></em>') WHERE meta_value NOT LIKE '%{%';
Please backup your database first.