What the hell is happening on this board? Half of the image files in every thread are broken, or their thumbnails won't show.
>>2260705Holy shit, I thought it was just me.
maybe its because the images expire after a certain time on the servers
>>2260705I honestly thought it was something wrong on my end.
>>2260706Same kek
It's not just this board, /wg/ is having issues as well. Don't know about the rest of the site.
>>2260705Fuck thought that was just me
I demand an answer
OTHER PEOPLE NOTICED THAT TOO?? i thought that was just my pc being retarded..
They've restarted the servers and some files just got fucked up along the way. You don't see it on active boards because the deprecated pics already went away.
>>2260764The curse of my fav board being slow.
The site becoming so /pol/ focused really has killed so many boards. Gookmoot just doesn't care.
>>2260767>Gookmoot just doesn't careI wager he completely forgot about this place after it failed to make him money
>>2260705I'll surprise you, not just this board, but most of the site :O
mods pls ;_;
>>2260767>random seething about /pol/
Most images in the Shimakaze thread are gone... or not. Thumbnails seem to have been most affected, some images are indeed gone for realsies, but most I've checked can be opened in a new tab and they'll load, it's mostly thumbnails that are fucked.
>>2260705>>2260742It's like that on /cgl/ and /y/ too, every dead board listed here https://4stats.io/ Nobody cares about any board other than videogame trannyrals and politically retarded.
Oh, sweet summer child. Haven't you heard? The 4chan mods are faggots
Ah yes "mods", we have dismissed that claim
is there an archive? it's sad
>>2261053archive.alice.alused to have /w/ but now it's gay this site is going to shit /v/ and /vg/ now want you to wait 15 minutes to post anything
>>2261070as you posted this /a/ just got the same treatment
>>2260708That's what i was thinking the place has threads that last for years sometimes with how slows low it is
>>2261072and now everywhere soon we'll have upvotes and pfp's and awards
>>2260764Kinda wish they would just wipe the boards completely, it would spare this place the sort of "abandoned" feeling that infinity also had. It's like I ended up in the wrong part of Detroit up in here.
>>2260767>mentions /pol/ without provocationThe only thing we have to blame from /pol/ is the ukraine worship general was spammed by the same 5 faggots so hard they turned off IP counts to hide it.Just because your specific political stance isnt flourishing on /pol/ doesnt mean everything is it's fault retard
>>2261053Only one's I know of are https://archive.palanq.win/w/ and https://archived.moe/wAlso, >verify your email address before making a post.Do mods want this site to die?
>>2261112Thanks, the first site is good for /w/ the second one is basically dead.>Do mods want this site to die?I haven't been affected by the measure yet.When digging through those archives I noticed all the threads that are created without a response, it was like spam and that's one of the boards with the least traffic.I think /a/ is the same or even a little improvement somehow.
in the preview element specifically the image tag link there is an extra 's' on the URL. You can use this simple script to fix it.let elements = document.getElementsByClassName("fileThumb");Array.from(elements).forEach((element) => { let img = element.querySelector("img"); // Selects the <img> tag inside the <a> tag if (img && img.src.endsWith("s.jpg")) { // check if the src ends with "s.jpg" img.src = img.src.replace("s.jpg", ".jpg"); // replace "s.jpg" with ".jpg" }});Just paste it into the console (right click and click inspect and go to the console page or press F12 and go to the console page).This is just a temporary solution until they fix it I guess.
>>2261121This doesn't work for .png images, first because your code only look at .jpg (obviously), but also because for .png, the small version of the file is stored as s.jpg not as s.png.For whoever is reading, I just wanted to fix this anon's code below. Don't do it this way if you have 4chanX. 4chanX has a setting for this exact thing (if you don't use 4chanX for some reason, then use my code below). Press settings > image and video > tick replace PNG and JPG (webm and gif too if you want, the script below does all those extensions except .webm because it'd need some additional code). This does the exact same thing the script does, which is taking the original version of the image, and replacing the small version (thumbnail). Note that you will probably see some slowing down while scrolling because you are now showing a lot of full resolution images instead of having the small thumbnail version.Below is the fixed script, put it into tempermonkey or some shit to automatically load up every time, but at this point why not use 4chanX? Or maybe you could use this with tempermonkey to only have it execute be on /w/? That would be the only use case that 4chanX wouldn't accomplish (using a script on specific boards).let elements = document.getElementsByClassName("fileThumb");Array.from(elements).forEach((element) => {let img = element.querySelector("img"); // Selects the <img> tag inside the <a> tagimg.src = element.getAttribute("href");});
>>2260891>>2261095GB2/pol/