Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Broken Images

Author Message
RowdyGamer Offline
Apprentice Poster
*

Posts: 19
Joined: Nov 2020
Reputation: 0
Post: #1
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
Find all posts by this user Quote this message in a reply
RowdyGamer Offline
Apprentice Poster
*

Posts: 19
Joined: Nov 2020
Reputation: 0
Post: #2
RE: Broken Images
All I'm seeing is this


Attached File(s) Thumbnail(s)
   
17-12-2024 12:08
Find all posts by this user Quote this message in a reply
Count Spankula Offline
Stop The Count
****

Posts: 701
Joined: Jul 2009
Reputation: 29
Post: #3
RE: Broken Images
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.
17-12-2024 15:35
Find all posts by this user Quote this message in a reply
RowdyGamer Offline
Apprentice Poster
*

Posts: 19
Joined: Nov 2020
Reputation: 0
Post: #4
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
Find all posts by this user Quote this message in a reply
Post Reply