Feedback Technical Grievances

  • Want to keep track of this thread?
    Accounts can bookmark posts, watch threads for updates, and jump back to where you stopped reading.
    Create account
Not sure what happened but it appears that PNGs are getting corrupted when uploaded to the forums through TOR. Only seems to of just happened today. Not sure if Clearnet has the same issue or not but thought as might as well let you know. Tried a few different image types and they all seem fine.
 

Attachments

  • vlcsnap-2026-01-25-02h12m24s703.png
    vlcsnap-2026-01-25-02h12m24s703.png
    59.2 KB · Views: 15
  • vlcsnap-2026-01-25-02h21m30s879.png
    vlcsnap-2026-01-25-02h21m30s879.png
    59.2 KB · Views: 14
  • Screenshot_2026-01-24_141236.png
    Screenshot_2026-01-24_141236.png
    30.5 KB · Views: 15
so here is a potential proxy.php fix so that images in general chat work ebyond ibb.co and can fetch, say, X/twitter images. The encyclopedia dramatica forums uses something like this as their fix @Null

PHP:
<?php// Define a secret key for hash validation (change this to a strong, unique value)$secret = 'your_secret_key_here'; // Keep this private!// Check if required parameters are providedif (!isset($_GET['image']) || !isset($_GET['hash'])) {    http_response_code(400);    echo 'Missing parameters.';    exit;}// Decode the image URL (it's URL-encoded in the query string)$imageUrl = urldecode($_GET['image']);// Optionally, validate the domain to restrict to specific hosts (e.g., for security)// Example: allowed domains$allowedHosts = ['pbs.twimg.com', 'i.ibb.co']; // Add more as needed, or remove for any domain$parsedUrl = parse_url($imageUrl);$host = $parsedUrl['host'] ?? '';if (!empty($allowedHosts) && !in_array($host, $allowedHosts)) {    http_response_code(403);    echo 'Invalid domain.';    exit;}// Compute the hash using the URL and secret: md5(md5(URL) + secret)$computedHash = md5(md5($imageUrl) . $secret);// Verify the provided hash matchesif ($computedHash !== $_GET['hash']) {    http_response_code(403);    echo 'Hash mismatch.';    exit;}// Use cURL to fetch the image (ingest the blob/binary data)$ch = curl_init($imageUrl);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_HEADER, false);curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; ImageProxy/1.0)');// Optional: Set a timeout to prevent hangingcurl_setopt($ch, CURLOPT_TIMEOUT, 10);$imageData = curl_exec($ch);$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);curl_close($ch);// Check if fetch was successfulif ($httpCode !== 200 || $imageData === false) {    http_response_code(500);    echo 'Failed to fetch image.';    exit;}// Serve the image blob with the correct content typeheader("Content-Type: $contentType");header('Content-Length: ' . strlen($imageData));echo $imageData;exit;?>

@Null it works for EDF for their forum and chat, so it should work for your $3000 set up and forum provided you change the URL to be a proxy here. I don't know where the kiwiflare github is currently, otherwise I would test to see if this works in production.

{IMG}[./IMG} works for ibb.co domains, so that won't need this proxy.php workaround to be called for http://pbs.twimg.com/media/<INSERT_IMG_HASH_HERE> . This allows for people to post images from other places like X/Twitter in the General Chat.
 
Last edited:
Clicking the link to the resolved report sends me to the .jp site, but not logged into the website.
I imagine not being logged in is on purpose, since I have no cookie for the URL, but why am I sent to another site when I am logged in on .st?

1769370898815.png
 
mod using it must be on .jp and the route is generated relative to his site, wonderful.
 
If you have just updated your avatar it is possible that Tartarus has cached it without a query string. Is .jp showing the old one?
Correct. I changed it recently, yesterday or the day before.
If it will eventually correct itself it is not an issue.
 
Not sure what happened but it appears that PNGs are getting corrupted when uploaded to the forums through TOR. Only seems to of just happened today. Not sure if Clearnet has the same issue or not but thought as might as well let you know. Tried a few different image types and they all seem fine.
That's a browser issue. Tor blocks canvas info by default, so any images you upload will look like that.
 
Tor complaint, this one actually is legit and not complaining about features the browser implements by itself. I was browsing a thread and after a bit of staying on the page I clicked on the logo to redirect me to the homepage and instead of showing me the homepage, it showed me the same thread I was on. After I clicked the logo again I got this error. This is the first time I have gotten this error, but I assume it's caused by the unstable storage situation.

1769373045436.png
 
Tor complaint, this one actually is legit and not complaining about features the browser implements by itself. I was browsing a thread and after a bit of staying on the page I clicked on the logo to redirect me to the homepage and instead of showing me the homepage, it showed me the same thread I was on. After I clicked the logo again I got this error. This is the first time I have gotten this error, but I assume it's caused by the unstable storage situation.
Are you able to consistently recreate it? if so please email me your request headers.
 
No idea what is going on with the .st site right now, is it because of the harddrive issue?

all my posts disappeared from my Posting history.

1769373644367.png


When I search for myself I only get one result.

1769373724304.png
 
i hope this is the correct thread for it, possibly i'm retarded and it's already there, but i wish mod actions were a separate notification category or easily seen message in that area. general activity on the site piles up a shit ton of pos/neg sticker notifications, but i'd like it if i could prioritize any times if/when i fuck up somewhere instead of it being hidden or buried to better course correct behavior, to prevent a warning being missed or something and then going back later to a thread without knowing such and such is improper.
 
Back
Top Bottom