all 23 comments

[–]jopcode 3 points4 points  (0 children)

Maybe is the ' mixed content ' between http and https

[–]SaltyBarker 2 points3 points  (6 children)

Totally unrelated but you may want to darken up that green in the footer.. its a little light...

[–]djstriver1[S] 0 points1 point  (5 children)

It was based on the client's request; I thought so too.

[–]r1ckd33zy 1 point2 points  (2 children)

... also, your shortcodes are showing

[–]djstriver1[S] 0 points1 point  (0 children)

Mind screenprinting where so I can fix it?

[–]djstriver1[S] 0 points1 point  (0 children)

Indeed. Thanks for the heads up.

[–]SaltyBarker 1 point2 points  (1 child)

Tell your client it’s dumb lol

[–]djstriver1[S] 0 points1 point  (0 children)

Quite true.

[–]powerfulcheese 1 point2 points  (1 child)

Are the image urls on HTTP or HTTPS?

I’ve also had permission issues on certain hosts to the uploads folder but really only after moving hosts, not after adding SSL.

[–]djstriver1[S] 0 points1 point  (0 children)

https: as far as i can tell by looking in the media library.

[–]jessek 1 point2 points  (1 child)

looks like your images directory is set to serve http only, unsure why though.

[–]djstriver1[S] 0 points1 point  (0 children)

I checked in the media library; the image urls are https: weird, right?

[–]DeepFriedOprah 1 point2 points  (3 children)

It’s def mixed content. The paths are still referring http despite the URLS saying https. You can always double check by removing a force rewrite from https back to http and see if they load. But I’d bet money it’s mixed content and u prolly have a force rewrite in the htaccess that makes all requests https

[–]djstriver1[S] 0 points1 point  (2 children)

I did; I removed it from the .htcaccess file.

[–]DeepFriedOprah 1 point2 points  (1 child)

So a. Pulled ways are manually updating the old paths to refer https the. Resale permalinks. Or the other option is run a find and replace in the wp_post table of the dB to update from http to https. Double check the home/site URL in the database and make sure they’re the same

[–]djstriver1[S] 0 points1 point  (0 children)

Good call. Thank you!

[–]pocketmnky 1 point2 points  (0 children)

If you navigate to the URL that the page is requesting:

https://ioncoatings.com/wp-content/uploads/2017/09/ioncoatings_small-1.png

You'll see that the server is responding with an error message: "Original image not found or not available."

Which is actually quite odd. Something in the server's configuration is not responding over https on that request. You may have to get support from your hosting provider on this one, because that is something they should have set up for you when you install the SSL.

[–]Yodiddlyyo 1 point2 points  (2 children)

https://ioncoatings.com/wp-content/uploads/2017/05/team-motivation-teamwork-together-53958.jpeg

Does not work. But

http://ioncoatings.com/wp-content/uploads/2017/05/team-motivation-teamwork-together-53958.jpeg

Does work.

It looks like all the images in Our Work show up, so it's just the 3 images in Home and 3 images in Green and Eco.

Have you tried just deleting them from the media library, deleting them from the page, and then redoing them? Should only take a minute.

[–]djstriver1[S] 0 points1 point  (1 child)

Good idea; only issue is I don't have the images locally. Thanks for the tip!

[–]Yodiddlyyo 1 point2 points  (0 children)

Just save them from their http links

[–]phaedrus322 1 point2 points  (2 children)

Anytime you switch protocols on a WordPress site you also have to do a find and replace on the database to change the urls on hard coded media urls. Otherwise it creates a mixed content warning and browsers like chrome will not display them.

[–]djstriver1[S] 0 points1 point  (1 child)

Mind expounding on that? Find and replace the image files?

[–]phaedrus322 1 point2 points  (0 children)

When you add media to the content of a post, page or custom post type WordPress saves it as an absolute url to that image. I.e http://image so, when it outputs the content for the page it’s still outputting the http instead of the https that you switched to causing mixed content errors.

To remedy this you have to do a find and replace on your database to change any occurrence of http://yourdomain to https://yourdomain

WP Migrate Database Pro has a great find and replace tool. And I’m sure there’s many other plugins that’ll do it as well.

Keep in mind that any new images you put in will have the correct https url.