Page 107 of 107 << First ... 75797105106107
Results 1,591 to 1,599 of 1599

Thread: IMX.to - support  

  1. #1591
    Carpe diem, baby Brother82's Avatar
    Joined
    14 May 2015
    Posts
    26,845
    Likes
    818,284
    Images
    2,476,107
    Location
    Planet Earth 

    Re: IMX.to - support

    Direct links work fine for me too, but they don't show up in the post field
    <a href=https://imgbox.com/mES9DmxB target=_blank rel=nofollow><a href=https://images2.imgbox.com/3d/49/mES9DmxB_o.png target=_blank rel=nofollow>https://images2.imgbox.com/3d/49/mES9DmxB_o.png</a></a>
    You’re so sudden and sweet, all the legs, knuckle, knees.
    Head’s blown clean off your mouth’s paid off
    F*ck me ’til we know it’s unsafe and we’ll paint
    Over the evidence

  2. Liked by 7 users: Cypher, mike_04, P4ti, protogen, Rex, roger33, version365

  3. #1592
    Elite Member evenings's Avatar
    Joined
    29 Jun 2017
    Posts
    19,507
    Likes
    383,602
    Images
    1,382,772
    Location
    Minionverse 

    Re: IMX.to - support

    ...same stuff, different day. Sigh...🤬


  4. #1593
    Illegitimi Non Carborundum Progishness's Avatar
    Joined
    3 Jun 2015
    Posts
    10,374
    Likes
    80,924
    Images
    422,683
    Location
    Bah Humbug! 

    Re: IMX.to - support

    I just tested this upload (with non-rendered thumbnails) and it does download with IHG.

    https://vipergirls.to/threads/15628008-Lu...-01-Jan-2026
    Music is like sex - some like it deep and meaningful, some like it soft and floaty, and some like it hard and banging.

  5. Liked by 5 users: Brother82, Cypher, evenings, protogen, roger33

  6. #1594
    Moderator Cypher's Avatar
    Joined
    30 Oct 2016
    Posts
    37,737
    Likes
    1,219,568
    Images
    2,627,068
    Location
    NY 

    Re: IMX.to - support

    Quote Originally Posted by roger33 View Post
    I guess they changed the format of thumbnail link URLs, site code is broken or one of their servers is acting funny. In normal conditions, thumbnails with image.imx.to/u/t/ in the URL redirects to t.imx.to/t/ and displays the image.

    But thumbnail links in your last thread in Transsexual section don't redirect to t.imx.to/t/ and gives "404 Not Found" error.

    However Cypher's latest post hosted on imx from yesterday redirects the thumbnails correctly and displays them.
    I have a cheat code

  7. Liked by 3 users: Progishness, protogen, roger33

  8. #1595
    Elite Prospect Rex's Avatar
    Joined
    21 Jul 2019
    Posts
    9,436
    Likes
    250,678
    Images
    1,106,498

    Re: IMX.to - support

    Quote Originally Posted by roger33 View Post
    I guess they changed the format of thumbnail link URLs, site code is broken or one of their servers is acting funny. In normal conditions, thumbnails with image.imx.to/u/t/ in the URL redirects to t.imx.to/t/ and displays the image.

    But thumbnail links in your last thread in Transsexual section don't redirect to t.imx.to/t/ and gives "404 Not Found" error.

    However Cypher's latest post hosted on imx from yesterday redirects the thumbnails correctly and displays them.
    For uploaders, a temp solution to this particular problem with this information provided, you can use this regex sustitution.

    On test string, drop your BB Code for images, and the proper output will be generated with a fix, this is working as now in my Gia Vendetti thread.

    For the time being, it works, until they add a proper fix to this, happy new year everyone!

    EDIT AS 1/1/26: It seems fixed! So no need to fix!
    Last edited by Rex; Yesterday at 00:35.
    Thanks to everyone who supports my content in any way! always appreciated


  9. #1596
    Active Member
    Joined
    9 Apr 2020
    Posts
    12
    Likes
    12
    Images
    0

    Re: IMX.to - support

    I made a userscript to apply that fix in the meantime:

    UPDATED: this fixes other imx links that worked before but that the previous version of this script broke.
    // ==UserScript==
    // @name         IMX image smart failover
    // @namespace    https://imx.to/
    // @version      3.0
    // @description  Smart per-image fallback between image.imx.to and t.imx.to
    // @match        *://*/*
    // @grant        none
    // ==/UserScript==
    
    (function () {
        'use strict';
    
        const SOURCE_RE = /^https:\/\/image\.imx\.to\/u\/t\//;
        const FALLBACK_FROM = 'https://image.imx.to/u/t';
        const FALLBACK_TO   = 'https://t.imx.to/t';
    
        function handleImage(img) {
            const originalSrc = img.getAttribute('src');
            if (!originalSrc || !SOURCE_RE.test(originalSrc)) return;
    
            let triedFallback = false;
    
            img.addEventListener('error', () => {
                if (triedFallback) return;
    
                triedFallback = true;
    
                const fallbackSrc = originalSrc.replace(
                    FALLBACK_FROM,
                    FALLBACK_TO
                );
    
                img.src = fallbackSrc;
            }, { once: true });
        }
    
        function process(root = document) {
            root.querySelectorAll('img[src]').forEach(handleImage);
        }
    
        // Initial scan
        process();
    
        // Watch dynamic content
        const observer = new MutationObserver(mutations => {
            for (const m of mutations) {
                for (const node of m.addedNodes) {
                    if (node.nodeType !== 1) continue;
    
                    if (node.tagName === 'IMG') {
                        handleImage(node);
                    } else {
                        process(node);
                    }
                }
            }
        });
    
        observer.observe(document.documentElement, {
            childList: true,
            subtree: true
        });
    })();
    I can now see the thumbnails once again on recent postings that have that issue.
    Last edited by cofer123; 1st January 2026 at 15:24.


  10. #1597
    Audentes Fortuna Iuvat ConnieCombs's Avatar
    Joined
    14 Jul 2021
    Posts
    5,119
    Likes
    65,261
    Images
    237,103
    Location
    West Coast, USA 

    Re: IMX.to - support

    I have updated my uploader to parse the correct thumbnail links. There are builds for Windows / Mac / and Linux https://github.com/conniecombs/GolangVers...s/tag/v1.0.1


    Currently resolving build issues. If you build the program yourself it will work fine
    Last edited by ConnieCombs; 1st January 2026 at 22:56.

  11. Liked by 6 users: bOOmy, mike_04, protogen, Rex, roger33, version365

  12. #1598
    Elite Prospect Khaak's Avatar
    Joined
    5 Jul 2016
    Posts
    287
    Likes
    9,360
    Images
    26,909

    Re: IMX.to - support

    I just uploaded a set using the usual parameters and now the thumbnails are visible again

  13. Liked by 4 users: mike_04, Rex, roger33, version365

  14. #1599
    Super Moderator mike=)).'s Avatar
    Joined
    4 Nov 2005
    Posts
    7,989
    Likes
    564,890
    Images
    459,851
    Location
    near Amsterdam 

    Re: IMX.to - support

    Maybe because BB died a few days ago.
    (my pennies worth of useless information)

  15. Liked by 2 users: Meph, version365

Posting Permissions