Images not loading

Feb 28, 2020
1,674
8,718
456
Australia, QLD
This has happened a lot to me lately.
no picture.PNG

This was on @Granny Hatchet 's thread (Granny's gone and done it again). It used to be the hiding underneath a chair smiley->:oops:.But now, doesn't show. This usually happens on threads that are quite old, to me. Does this happen to anyone else? Check out the thread from the start and see if that little no image sign comes up in any post. https://www.backyardchickens.com/threads/grannys-gone-and-done-it-again.1137464/

Laura :)
 
SUPER helpful!

It would be great to start a list of images missing. For example, this one will be relatively easy to fix... either adding that smiley into our filesystem, or doing a find/replace of references to point to the new smiley:
https://www.backyardchickens.com/styles/byc-smilies/frow.gif
to
https://www.backyardchickens.com/styles/byc-smilies/frow.gif

Fixed it here:
https://www.backyardchickens.com/threads/grannys-gone-and-done-it-again.1137464/#post-17631582

SELECT post_id
FROM `xf_post`
WHERE `message` LIKE "%https://www.backyardchickens.com/styles/byc-smilies/frow.gif%"
AND user_id = 371240



UPDATE `xf_post`
SET `message` = replace(message, 'https://www.backyardchickens.com/styles/byc-smilies/frow.gif', 'https://www.backyardchickens.com/styles/byc-smilies/frow.gif')
WHERE `message` LIKE "%https://www.backyardchickens.com/styles/byc-smilies/frow.gif%"
AND post_id = 17631582

So, if you see others (especially easy ones that are find/replace) let me know and I'll fix them :)
 

New posts New threads Active threads

Back
Top Bottom