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

Broken Images

Author Message
RowdyGamer Offline
Junior Poster
**

Posts: 20
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
Junior Poster
**

Posts: 20
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
Junior Poster
**

Posts: 20
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);
21-12-2024 01:30
Find all posts by this user Quote this message in a reply
wrightbadger Offline
Apprentice Badger
***

Posts: 136
Joined: Aug 2018
Reputation: 7
Post: #5
RE: Broken Images
looking at lic.me i think their archive of imagechunk images has degraded to being almost useless.
unless there's a problem with the site it seems like almost all of the full size images are gone with only cropped thumbnails remaining.

if you search lic.me for some of your your example danica images
https://lic.me/search/?s=cable_106_20100501_2202
you will get thumbnails but clicking on them goes to pages without a full size image

i did make an extra bookmarklet to get these thumbnails for broken lic.me images but they're a poor substitute and i really don't know if it's worth posting it

- imagechunk image fix bookmarklet -
21-12-2024 23:28
Find all posts by this user Quote this message in a reply
RowdyGamer Offline
Junior Poster
**

Posts: 20
Joined: Nov 2020
Reputation: 0
Post: #6
RE: Broken Images
(21-12-2024 23:28 )wrightbadger Wrote:  looking at lic.me i think their archive of imagechunk images has degraded to being almost useless.
unless there's a problem with the site it seems like almost all of the full size images are gone with only cropped thumbnails remaining.

if you search lic.me for some of your your example danica images
https://lic.me/search/?s=cable_106_20100501_2202
you will get thumbnails but clicking on them goes to pages without a full size image

i did make an extra bookmarklet to get these thumbnails for broken lic.me images but they're a poor substitute and i really don't know if it's worth posting it
I actually used your bookmark from the Dionne Daniels thread but it doesn't solve the problem. Can you still give me that extra bookmarklet? Thanks
22-12-2024 11:08
Find all posts by this user Quote this message in a reply
wrightbadger Offline
Apprentice Badger
***

Posts: 136
Joined: Aug 2018
Reputation: 7
Post: #7
RE: Broken Images
okay..
this bookmarklet should replace broken imagechunk and lic.me images with hopefully still working lic.me thumbnails as a (disappointing) substitute.

like as before..
a bookmarklet is a bookmark in your browser that instead of going to a page will run a javascript function on the page you have open to temporarily modify it.

the below codebox has the bookmarklet as a very long single line of text. to use it:
1) select all the text in the codebox and then copy it (the text below Code:)
2) create a new bookmark in your browser and edit it
3) give the bookmark a meaningful name.. like JS-imgchunkLicme_th or something
4) paste the bookmarklet text into the url field of your new bookmark
5) when you're on a page with broken imagechunk or lic.me images click on the bookmark and it should change them to thumbnail substitutes with a purple dotted border around them so you know which ones it tried to change.

Code:
javascript:{ 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("transp.gif") >= 0 && mypictextdat.indexOf("lic.me") >= 0) mypictext=mypictextdat; if (mypictext.indexOf("imagechunk") >= 0 || mypictext.indexOf("lic.me") >=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];   }  mypictext=mypictext.replace("imgchunk_", "");  mypictext=mypictext.replace("_thumb.", ".");  mypics[i].src=("http://lic.me/thumbnails/"+ mypictext.charAt(0) +"/"+ mypictext.charAt(1) +"/"+ mypictext);  mypics[i].style.border="#FF00FF 5px dotted";  } }};void(0);


--
below is a multi-line version of the bookmarklet if you want to check it for safety reasons:
Code:
javascript:{
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("transp.gif") >= 0 && mypictextdat.indexOf("lic.me") >= 0) mypictext=mypictextdat;

if (mypictext.indexOf("imagechunk") >= 0 || mypictext.indexOf("lic.me") >=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];
   }
  mypictext=mypictext.replace("imgchunk_", "");
  mypictext=mypictext.replace("_thumb.", ".");
  mypics[i].src=("http://lic.me/thumbnails/"+ mypictext.charAt(0) +"/"+ mypictext.charAt(1) +"/"+ mypictext);
  mypics[i].style.border="#FF00FF 5px dotted";
  }
}
};void(0);


notes:
lic.me seems to be degrading and losing thumbnails too or seem to be wrong images, but this will probably get worse over time as more disappear.
changes to a page aren't permanent. it just adjusts what you have open now.

modified from previous bookmarklet so should work on bshow, rpant and lshow forums and probably others.
(tested on chromium browser. should work on others)

don't trust every bookmarklet you find on the internet.
always check through the code yourself before you trust it.

- imagechunk image fix bookmarklet -
Today 02:10
Find all posts by this user Quote this message in a reply
wrightbadger Offline
Apprentice Badger
***

Posts: 136
Joined: Aug 2018
Reputation: 7
Post: #8
RE: Broken Images
if you want to test it here are 2 sample images pointing to imagechunk and another 2 pointing to lic.me..

[Image: index.php?module=thumbnail&file=d5_102.jpg]
[Image: dionne_17_06_11_014_thumb.jpg]
[Image: imgchunk_screenhunter_3352_apr._01_02.40.jpg]
[Image: screenhunter_6625_jun._10_01.53.jpg]

- imagechunk image fix bookmarklet -
Today 02:24
Find all posts by this user Quote this message in a reply
Post Reply