s9e Media Sites

s9e Media Sites 2.18.8

No permission to download
In the Admin panel, Content > BB code media sites. Edit the Instagram entry and make sure it's enabled.

Hi there! Just upgraded, but the Instagram is still not showing in the options even though I have it turned on in ACP?
 

Attachments

  • Screenshot_28-6-2025_104552_www.goldenskate.com.webp
    Screenshot_28-6-2025_104552_www.goldenskate.com.webp
    23 KB · Views: 7
  • Screenshot_28-6-2025_104713_www.goldenskate.com.webp
    Screenshot_28-6-2025_104713_www.goldenskate.com.webp
    13.1 KB · Views: 5
Hi there! Just upgraded, but the Instagram is still not showing in the options even though I have it turned on in ACP?
Maybe you unchecked the Show this site on the list of 'supported' sites shown to visitors option in the site's config?

Can I remove this part from the admin panel?
You can disable it via your admin panel if you search for the Allow users to search for embeddable content in remote pages option in the admin panel's search box.
 
i'm not sure if this is only broken for us, or for everyone and no one reported it before because barely anyone else uses mastodon (unfortunately), but the embeds are VERY broken right now (only mastodon, everything else seems to work fine):

av5FjWe.png
 
but maybe it really is just us then, but it's weird that's the only embed that breaks, all the other ones work fine
By the looks of it, it's probably just you(r style) but I'd like to fix it if I can. I'm surprised by the fact that the embed grows in height without pushing down the quotes and the rest of the page's content. Off the top of my head I don't know how that could happen accidentally.

If you can send me a link to that page on your site (the one you showed in the screenshot) I'll see if I can reproduce it.
 
By the looks of it, it's probably just you(r style) but I'd like to fix it if I can. I'm surprised by the fact that the embed grows in height without pushing down the quotes and the rest of the page's content. Off the top of my head I don't know how that could happen accidentally.

If you can send me a link to that page on your site (the one you showed in the screenshot) I'll see if I can reproduce it.
thank you so much! :) and yeah, of course, here you go :D thanks again!
 
thank you so much! :) and yeah, of course, here you go :D thanks again!
The issue originates from your extra.less template:
CSS:
.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) {
    max-height:500px !important;
}
That rule limits the height of the post but does not specify how to handle its overflow, that's why it spills over the rest.
CSS:
.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) {
    max-height:500px !important;
    overflow: auto;
}
 
The issue originates from your extra.less template:
CSS:
.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) {
    max-height:500px !important;
}
That rule limits the height of the post but does not specify how to handle its overflow, that's why it spills over the rest.
CSS:
.bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"]) {
    max-height:500px !important;
    overflow: auto;
}
well, that DID help ... somewhat

but now i have to scroll within the posts to be able to see the replies below the quotes, which is ... not ideal :P
 
You have to make a choice between limiting the size of the entire post and cause it to scroll, or not limit it at all. You can still limit the size of individual embeds either way.
 
You have to make a choice between limiting the size of the entire post and cause it to scroll, or not limit it at all. You can still limit the size of individual embeds either way.
why does it only break on mastodon embeds, though? all the other ones work just fine (including bsky)
 
Your CSS rule only targets posts that contain Mastodon embed: .bbWrapper:has(iframe[data-s9e-mediaembed="mastodon"])
yes, but that rule was created specifically because it was breaking, except before the embeds were set to 100vh, before adding the rule

ok, i removed the rules now, and you can see what's going on without it when you scroll up and down that page. some embeds are fine, but some are looooooooooooooooooong
 
Last edited:
Back
Top Bottom