Integrating WordPress for blog and other content pages in a web app
We ended up going with subdomains for WordPress sites, which seems to be a simpler and more robust solution.
We ended up going with subdomains for WordPress sites, which seems to be a simpler and more robust solution.
From your screenshot, it looks like you are displaying images from another website (nga.gov), for example: http://images.nga.gov/?service=asset&action=show_preview&asset=120079 After checking out the links with the mixed content warning, I can see that SSL is set up for this website, which is good. However, their links still default to HTTP, for whatever reason. To fix this on … Read more
This sounds like a bug in the plugin, and they should fix it. But if they don’t, you can always add a filter to home_url and change all http:// to https:// like so: add_filter( ‘home_url’, ‘wpse_259675_home_url’, 1000, 4 ); function wpse_259675_home_url( $url, $path, $orig_scheme, $blog_id ) { return str_replace( ‘http://’, ‘https://’, $url ); }
Not sure what the exact problem here is but you could try adding the following line in wp-config.php file define(‘FORCE_SSL_ADMIN’, true); Let me know how this works out.
I do have the same problem when I am using Cloudflare SSL.Just make redirection to https for all pages using CloudFlare dashboard and then install Really Simple SSL and check only “Auto Replace mixed content”. Hope this may solve your problem. If else try deleting .htaccess file.
The problem may be in the SSL implementation itself. You just have to follow a number of steps as outlined below (apologies if you have done all of this already): Once the server is configured to use an SSL certificate, you need to check that SSL / TLS support is selected for the hosting (I … Read more
Google has marked matx.coderpixel.com as a phishing site. That’s not your domain, of course. However you are using resources from that site. Specifically you are using several images from matx.coderpixel.com/wp/wp-content/uploads/2016/04, including android_phone.jpg, cloudy_hill.jpg, desk.jpg, keyboard.jpg, and man_with_ipad.jpg. It is a bad (and unless you have the rights to use these images, illegal) practice to serve … Read more
If you have the “force ssl on checkout” enabled in woocommerce along with another plugin like ithemes security also forcing the ssl it could be causing your redirect loop.
It’s very primitive method but works in any case; Make a dump from MySQL Open it with text editor or maybe another tool you liked (If your dump is so big, you’ll need a strong computer.) Find all http://example.com, replace with https://example.com and save. Rename/move the old database for backup, import the edited database. Leave … Read more
It turns out that the shared server I have at Network Solutions is forcing HSTS through their service. And since it’s a shared hosting server, they refuse to change it. The solution: I purchased a Wildcard certificate, and installed it on multiple servers for each subdomain.