RowdyGamer
Apprentice Poster
Posts: 19
Joined: Nov 2020
Reputation: 0
|
Broken Images
Is there any way I can see the broken images from 10/11 years ago especially from imagechunk? Any particular script or something?
|
|
16-12-2024 13:55 |
|
RowdyGamer
Apprentice Poster
Posts: 19
Joined: Nov 2020
Reputation: 0
|
RE: Broken Images
(17-12-2024 15:35 )Count Spankula Wrote: The answer is basically yes, it is possible for you to see the broken images from Imagechunk. However, since the images have been moved to Lic Me, you have to fix the img sources to point to the current images rather than the Imagechunk originals.
Can you help me with that?
I have this script:
j { var mypics=document.images; var mypictext=""; var mypictextdat=""; var mytextsplit = []; for (i=0; i<mypics.length; i++) { mytextsplit.length=0; mypictext=mypics[i].src; mypictextdat=mypics[i].getAttribute("data-original"); if (mypictext.indexOf("transp.gif") >= 0 && mypictextdat.indexOf("imagechunk") >= 0) mypictext=mypictextdat; if (mypictext.indexOf("imagechunk") >= 0 || mypictext.indexOf("lic.me/t/imgchunk_") >=0) { mytextsplit = mypictext.split("/"); mypictext=mytextsplit[mytextsplit.length-1]; if (mypictext.indexOf("index.php") >= 0) { mytextsplit.length=0; mytextsplit = mypictext.split("="); mypictext=mytextsplit[mytextsplit.length-1]; } else if (mypictext.indexOf("imgchunk_") >= 0) { mypictext = mypictext.replace("imgchunk_", ""); } mypictext = mypictext.replace("_thumb.", "."); mypics[i].src=("http://lic.me/uploaded_images/"+ mypictext.charAt(0) +"/"+ mypictext.charAt(1) +"/"+ mypictext); } }};void(0);
|
|
Today 01:30 |
|