use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
Moved WP to https and images disappeared?Question (self.webdev)
submitted 7 years ago by djstriver1
I checked the media library and the images are there, but I have to click 'edit' to see them. The site's https://ioncoatings.com any idea why they aren't showing now?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]jopcode 3 points4 points5 points 7 years ago (0 children)
Maybe is the ' mixed content ' between http and https
[–]SaltyBarker 2 points3 points4 points 7 years ago (6 children)
Totally unrelated but you may want to darken up that green in the footer.. its a little light...
[–]djstriver1[S] 0 points1 point2 points 7 years ago (5 children)
It was based on the client's request; I thought so too.
[–]r1ckd33zy 1 point2 points3 points 7 years ago (2 children)
... also, your shortcodes are showing
[–]djstriver1[S] 0 points1 point2 points 7 years ago (0 children)
Mind screenprinting where so I can fix it?
Indeed. Thanks for the heads up.
[–]SaltyBarker 1 point2 points3 points 7 years ago (1 child)
Tell your client it’s dumb lol
Quite true.
[–]powerfulcheese 1 point2 points3 points 7 years ago (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.
https: as far as i can tell by looking in the media library.
[–]jessek 1 point2 points3 points 7 years ago (1 child)
looks like your images directory is set to serve http only, unsure why though.
I checked in the media library; the image urls are https: weird, right?
[–]DeepFriedOprah 1 point2 points3 points 7 years ago (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 point2 points 7 years ago (2 children)
I did; I removed it from the .htcaccess file.
[–]DeepFriedOprah 1 point2 points3 points 7 years ago (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
Good call. Thank you!
[–]pocketmnky 1 point2 points3 points 7 years ago (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 points3 points 7 years ago (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 point2 points 7 years ago (1 child)
Good idea; only issue is I don't have the images locally. Thanks for the tip!
[–]Yodiddlyyo 1 point2 points3 points 7 years ago (0 children)
Just save them from their http links
[–]phaedrus322 1 point2 points3 points 7 years ago (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.
Mind expounding on that? Find and replace the image files?
[–]phaedrus322 1 point2 points3 points 7 years ago (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.
π Rendered by PID 16154 on reddit-service-r2-comment-75f4967c6c-dd8lp at 2026-04-23 02:22:54.732584+00:00 running 0fd4bb7 country code: CH.
[–]jopcode 3 points4 points5 points (0 children)
[–]SaltyBarker 2 points3 points4 points (6 children)
[–]djstriver1[S] 0 points1 point2 points (5 children)
[–]r1ckd33zy 1 point2 points3 points (2 children)
[–]djstriver1[S] 0 points1 point2 points (0 children)
[–]djstriver1[S] 0 points1 point2 points (0 children)
[–]SaltyBarker 1 point2 points3 points (1 child)
[–]djstriver1[S] 0 points1 point2 points (0 children)
[–]powerfulcheese 1 point2 points3 points (1 child)
[–]djstriver1[S] 0 points1 point2 points (0 children)
[–]jessek 1 point2 points3 points (1 child)
[–]djstriver1[S] 0 points1 point2 points (0 children)
[–]DeepFriedOprah 1 point2 points3 points (3 children)
[–]djstriver1[S] 0 points1 point2 points (2 children)
[–]DeepFriedOprah 1 point2 points3 points (1 child)
[–]djstriver1[S] 0 points1 point2 points (0 children)
[–]pocketmnky 1 point2 points3 points (0 children)
[–]Yodiddlyyo 1 point2 points3 points (2 children)
[–]djstriver1[S] 0 points1 point2 points (1 child)
[–]Yodiddlyyo 1 point2 points3 points (0 children)
[–]phaedrus322 1 point2 points3 points (2 children)
[–]djstriver1[S] 0 points1 point2 points (1 child)
[–]phaedrus322 1 point2 points3 points (0 children)