s9e Media BBCodes pack

s9e Media BBCodes pack 20231102

No permission to download
Indeed your allow_url_fopen is Off and that's what I use to retrieve those dimensions. If you can enable it in your PHP configuration, it should fix your issue right away.
 
Indeed your allow_url_fopen is Off and that's what I use to retrieve those dimensions. If you can enable it in your PHP configuration, it should fix your issue right away.

I'm looking at my Plesk & for the allow_url_fopen thing it says,

Allows PHP file functions to retrieve data from remote locations over FTP or HTTP. This option is a great security risk, thus do not turn it on without necessity.

The last part there scares me. Do you think it's safe to turn it on?
 
It is generally safe, yes. I don't know why Plesk make it sound so ominous. You have cURL enabled already, which does the same thing differently.

Awesome!

Just want to thank you man for helping me out so quick. This was one of the main problems I've been wanting to get fixed on my board for a while. You're a great add-on developer & this is a great add-on. I've been using it forever, and will probably always use it.
 
This is more of a feature request than anything, but I'm really curious:

Is there any way to get mobile devices to display the resource URL instead of the embedded resource? I would pay a few bucks for such a thing to be added.
 
@null0 Everything's possible, but there's no easy way to do that. Without tons of custom development, the best you can achieve is to use the option "Auto-embed media, and add a link to the content within this BB code:" in the Admin CP (search for "autoEmbedMedia") so that it displays a link alongside the embed. Then you can hide iframes and Flash objects from mobile view with custom CSS if you don't want them to be displayed on mobile with the template modification below.

Edit Template Modification
Code:
        Template: message.css
Modification Key: no_embed_on_mobile
     Description: Disables iframes and objects on small screens
     Search Type: Regular expression
            Find: (^)
         Replace: @media (max-width:@maxResponsiveNarrowWidth)
                  {
                      .message iframe, .message object { display: none }
                  }
 
Last edited:
I don't plan on ever adding X-rated sites to this add-on. Mostly because I'm afraid of unintended consequences such as being unable to download it if you're behind a firewall that blocks X-rated keywords or that kind of thing.

I would consider making a separate add-on for adult sites if there's enough demand for it. I need to find a good way to maintain both add-ons without doubling my workload.
 
It looks like you copy/pasted HTML code in your post. If you want to embed a Vine video you need to click the "Media" button in the editor and paste the original URL.
 
It looks like you copy/pasted HTML code in your post. If you want to embed a Vine video you need to click the "Media" button in the editor and paste the original URL.
unless I am missing something its not working, here is the URL if you want to try it. https://vine.co/u/956014368418680832 it gives me an error, the specified Url cannot be embeded. o another note, I add youtube vids just by pasting the URL in the thread, that can't be done with Vine or Facebook? Neve knew that.
 
Back
Top Bottom