Just moved to https, my check list

I just posted it as reference for others.
Just curious, I just noticed when adding a link to my forum, via Fabook for example, it used to add my logo for instance if there was no image in the post, now it shows nothing, is this anything to do with the https move you think? It does post an image if there is one in a thread though like with "feature thread" by @Brogan. Thoughts?

View attachment 144664 View attachment 144665

Code:
UPDATE xf_conversation_message SET message = REPLACE(message,'http://www.domain.com','https://www.domain.com');

UPDATE xf_user_profile SET signature = REPLACE(signature,'http://www.domain.com','https://www.domain.com');

UPDATE xf_post SET message = REPLACE(message,'http://www.domain.com','https://www.domain.com');

UPDATE xf_profile_post SET message = REPLACE(message,'http://www.domain.com','https://www.domain.com');

UPDATE xf_profile_post_comment SET message = REPLACE(message,'http://www.domain.com','https://www.domain.com');
Will this template edit help me with my issue?
 
Top Bottom