Feedback Technical Grievances

  • 🐕 I am attempting to get the site runnning as fast as possible. If you are experiencing slow page load times, please report it.
Fatrick thread attachments aren't working:
Post:

Click.
And, of course I can't attach the screen shot of the response...

Code:
Request URL: https://kiwifarms.st/attachments/fatprick-motion1-png.5292659/
Request Method: GET
Status Code: 502
Remote Address: 31.133.0.112:443
Referrer Policy: strict-origin-when-cross-origin

Content-Length: 552

Content-Type: text/html

Date: Thu, 24 Aug 2023 16:08:46 GMT

Server: nginx
 

Attachments

  • 2023-08-24_09-09.png
    2023-08-24_09-09.png
    24.9 KB · Views: 30
  • Like
Reactions: JustSomeDong
It actually attached btw it just if you copy and paste gives the "cannot be parsed" error. You just have to click on the insert thumbnail button on it.
 
  • Agree
Reactions: Baraadmirer
Possibly some image uploads failed.

For instance this post has six thumbnail images:

Images 4 and 5 give an error when you click to expand (502 Bad Gateway). The other ones work correctly. This makes me suspect the upload of those two failed to complete (even though there's a thumbnail), because there's no obvious difference between the working ones and failing ones.
 
Not sure if asked/answered before, but will lolcow.wiki ever be returned to a functional state? It’s still showing the cringe-inducing Cloudflare “threat to human life” page.
 
Links have built-in properties that will completely eliminate the need for those regexps. I'd replace var domain = kf_links[l].host; and then, inside the if where you update the link, this:
JavaScript:
kf_links[l].protocol = location.protocol;
kf_links[l].host = location.host;
Also I'd add the onion address to your const array and I'd add a @match for .st, so it'll work regardless of where, and it'll update the links to match the current location.

edit: in fact, the special link properties are so handy to have that I'll create a new A element if I need to mangle a URL from an element that doesn't have those special link properties (e.g. img.src).
I've been coding in JavaScript for years and didn't know links had this functionality. Thanks!
Code:
// ==UserScript==
// @name     KF Link Redirector
// @grant     none
// @match    https://kiwifarmsaaf4t2h7gc3dfc5ojhmqruw2nit3uejrpiagrxeuxiyxcyd.onion/*
// @match    https://kiwifarms.st/*
// ==/UserScript==

const kf_domains = [
  'kiwifarmsaaf4t2h7gc3dfc5ojhmqruw2nit3uejrpiagrxeuxiyxcyd.onion','kiwifarms.net','kiwifarms.is','kiwifarms.pl','kiwifarms.ru','sneed.today','kiwifarms.ru','kiwifarms.st'
]

window.addEventListener("DOMContentLoaded", ()=>{
  var kf_links = document.querySelectorAll(".link");
  for (let l = 0; l < kf_links.length; l++) {
    if (window.location.host != kf_links[l].host && kf_domains.indexOf(kf_links[l].host) > -1) {
      kf_links[l].host = window.location.host;
    }
  }
});
Works on both TOR and Clearnet now, and adding another domain is just another @match and add to the kf_domains array.
 
I'm sorry you feel that way. Do you consider there to be a better place or way to ask that question?
Maybe he gets annoyed answering the same questions over and over again from people who don't bother reading the forums. Its called a search button, and its there to answer your questions without annoying the head nigga in charge.
 
Maybe he gets annoyed answering the same questions over and over again from people who don't bother reading the forums. Its called a search button, and its there to answer your questions without annoying the head nigga in charge.
The search ranking algorithm is janky as fuck and advance search is clunky and out of date.
 
This is most likely me boomering up something on my end rather a site issue, but I recently got a new tablet and haven't been able to upload attachements ever since via a normal browser, despite having no issues on other websites.

On TOR it works just fine, pic related:
tor.png

But on Brave/Chrome I get this:
brave.png
The options for categories like pics, vids, pdfs, etc... aren't there and when I navigate to the relevant folders manually, the pics are grayed out and I cannot tap on them. \

Any idea what could be causing this? I think tablet's running Android 12, if that's relevant.
 
Probably something on my end. On here by the .st link on Brave, but every time I open a thread, Brave opens a new Tor window and loads the page there as well.
 
I'm finding that it's impossible to upload large attachments via .st. I can upload them via .onion, albeit slowly; trying to upload on .st always fails after a while with a "Something went wrong. Please try again or contact the administrator." error message.

e.g. tried uploading a ~100 MB file and it died after 15%.
 
I'm finding that it's impossible to upload large attachments via .st. I can upload them via .onion, albeit slowly; trying to upload on .st always fails after a while with a "Something went wrong. Please try again or contact the administrator." error message.

e.g. tried uploading a ~100 MB file and it died after 15%.
Yes, I had similar problems with files over 100mb. Under that seems to work perfectly
 
  • Agree
Reactions: GenociderSyo
Back