Topic: Can't see any posts

Posted under General

Looks like you need to click “i am older 18” on modal window. But the problem, maybe, because you didn’t see any modal windows. Same for me, iPhone

patrick12 said:
I mean NOTHING not even the safe images

did you try it with a different browser or in private mode? did you clear your browser site data?

So far most of the people reporting 'no images' seem to be using a browser with broken or inadequate javascript.
With the old system that meant that blacklisted images were not hidden. With the new system that means that no images are shown.
(because the logic is essentially reversed -- javascript is now used to populate the page with images, not to remove selected images from the page)

Telling us your OS, browser and hardware platform helps identify what the likely cause is in any particular case.

It's funny because using the JS to do it makes it easy to bypass, while doing it serverside isn't easy at all. C'est le vie. No one does it serverside anymore. XD

savageorange said:
So far most of the people reporting 'no images' seem to be using a browser with broken or inadequate javascript.
With the old system that meant that blacklisted images were not hidden. With the new system that means that no images are shown.
(because the logic is essentially reversed -- javascript is now used to populate the page with images, not to remove selected images from the page)

Telling us your OS, browser and hardware platform helps identify what the likely cause is in any particular case.

any idea what browser os the ps vita uses;cuz thats what i have.

WAIT, there is actually a setting to enable\disable javascript.
i turned it off and can see thumbnail so far, will update what else if relavent. any cons to it being off?

Telling us your OS, browser and hardware platform helps identify what the likely cause is in any particular case.
[/quote]

I use internet explorer 11 with updated java and it does not show me the images in window 7

the elements at play here are:

<style id="blacklisted-hider">
  .post-preview, #image-container, #c-comments .post, .mod-queue-preview.post-preview, .post-thumbnail {
    visibility: hidden !important;}
</style>
<noscript>
  <style>
    .post-preview, #image-container, #c-comments .post, .mod-queue-preview.post-preview, .post-thumbnail {
      visibility: visible !important;}
  </style>
</noscript>

so, if you have javascript disabled entirely, the <noscript> section becomes active and the visibility: visible style overrides the visibility: hidden,
if you have javascript enabled, you're relying on the blacklist engine (javascript) to process the thumbnails on the page, delete any that match your blacklist, then remove the visibility: hidden style. if the blacklist engine fails for some reason, the hidden style remains and all thumbnails are hidden.

if you're experiencing the latter case, your options are:

• disable javascript entirely; your blacklist will not take effect, but thumbnails should become visible at least; will probably also cause a bunch of other features to no longer function, such as autocomplete, related tags, anything else which uses AJAX.

• debug the blacklist engine and work out why it's failing. the first step would be opening the web console and checking for logged exceptions.

• find another way to defuse the #blacklisted-hider element. adding the following rule in uBlock Origin is one possible approach: e621.net##^#blacklisted-hider. the following userscript would also work: document.querySelector('#blacklisted-hider').remove(), if it runs at document-end. this is also useful for people who don't use blacklists at all, since you can start seeing thumbnails before the page finishes loading.

i hope this sheds some light on the confusion

savageorange said:
So far most of the people reporting 'no images' seem to be using a browser with broken or inadequate javascript.
With the old system that meant that blacklisted images were not hidden. With the new system that means that no images are shown.
(because the logic is essentially reversed -- javascript is now used to populate the page with images, not to remove selected images from the page)

Telling us your OS, browser and hardware platform helps identify what the likely cause is in any particular case.

a question no longer works for internet explorer 11?
Any advice?

https://e621.net/forum_topics/25958

Fixed, at least for SeaMonkey with Greasemonkey-hosted user script.
I'm not sure how to fix it completely without replacing that blacklist functionality. I didn't write the DanBooru code. :(

Oh, thanks for the "e621.net##^#blacklisted-hider" tip. I was trying to figure out how I got the syntax wrong, and apparently, you need that 3rd pound/hash (#) symbol. Oh heck, it's not working. I wonder if it's a problem with my UBO installation...

I noticed an oddity in the HTML source, where the source inside the blacklisted-hider div gets repeated right after but with 'visibility: visible' setting. I guess it got updated because I could have sworn it didn't do that, and it was being injected from JS. :/

<style id="blacklisted-hider">
    .post-preview, #image-container, #c-comments .post, .mod-queue-preview.post-preview, .post-thumbnail {
      visibility: hidden !important;
    }
  </style>
  <noscript>
    <style>
      .post-preview, #image-container, #c-comments .post, .mod-queue-preview.post-preview, .post-thumbnail {
        visibility: visible !important;
      }
    </style>
  </noscript>

Updated

sergio127 said:
a question no longer works for internet explorer 11?
Any advice?

though i'd like to help you, honestly, you'll be lucky if you find someone who has the time and willingness to diagnose Internet Explorer for you.
unless there's a very good reason that you can't simply use a different browser, it's hard to justify the time and effort.

alphamule said:
Oh, thanks for the "e621.net##^#blacklisted-hider" tip. I was trying to figure out how I got the syntax wrong, and apparently, you need that 3rd pound/hash (#) symbol. Oh heck, it's not working. I wonder if it's a problem with my UBO installation...

HTML filter rules are a recent feature; i wouldn't be surprised if it hasn't been tested on seamonkey.

  • 1