Website (My blog) post image is not come to my site link | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Website (My blog) post image is not come to my site link

I posted some pictures on my blogger. Why not Come those images when sharing a website link? What is the reason for this? How can this be done?

27th Apr 2020, 2:58 AM
Suhath Ahamed
Suhath Ahamed - avatar
6 Answers
+ 1
Your question is unclear... What's exactly the problem you're facing?
27th Apr 2020, 5:06 AM
visph
visph - avatar
+ 1
I've just done checking all your 112 image url (src attribute values) included in your code, and all are correctly loaded ^^ [edit] // code used to check (to put in the js tab): addEventListener('DOMContentLoaded',() => { var img = document.querySelectorAll('img'); img.forEach((e,i) => { e.onerror = () => console.log(i+': '+e.src); e.onload = () => console.log(i); }); }); // log only the image index if load success // log image index and src if load fail
27th Apr 2020, 5:12 AM
visph
visph - avatar
+ 1
Thank you
5th May 2020, 12:33 PM
Suhath Ahamed
Suhath Ahamed - avatar
+ 1
Why not use hosting
5th May 2020, 12:36 PM
Suhath Ahamed
Suhath Ahamed - avatar
+ 1
I am change my question. Please read and answer this. I think I need to talk to you a few things. Can you give your whatsapp number ??
5th May 2020, 12:49 PM
Suhath Ahamed
Suhath Ahamed - avatar
0
And?... 1) Appart adversiting for your website, that doesn't give more details about the problem you're facing: what do you expect exactly in wich circumstances... 2) If your problem is related to some AJAX request, you should at least provide unobfuscated javascript code and the server side script handling the request ^^ We aren't wizards, and anyway we cannot deeply investigate without having access to your hosting account (debugging a server side script requires testing it by adding logs to observe values at different points for example)... However, if you could at least read your code, maybe someone could give you some tracks to follow (but it would mean that your server side language and framework is very much well known, so I doubt you'll find easily someone able to help you efficiently just by reading your source codes ;P) 24 HOUR NEW NEWS WARNING: *** DON'T GIVE USE HOSTING CREDENTIALS ***
4th May 2020, 12:12 PM
visph
visph - avatar