Theme causing SSL break on chrome

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

SSL/HTTPS Redirect Loop

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.

Rewrite old post images to https

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

FORCE_SSL_ADMIN affecting subdomains

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.

How do I locate specific file in a post that affects ssl?

A quick squint at your site reveals that you’re serving it with Nginx, so a simple .htaccess redirect won’t work. The following block in your Nginx config should take care of any stray locally-served files that are still coming over http: server { listen 80 default_server; listen [::]:80 default_server; server_name _; return 301 https://$host$request_uri; } … Read more

SSL problems with WordPress

You can follow this tutorial to setup Administration Over SSL at the WordPress codex. It explains how to setup your configuration to use SSL on the Admin area.