JoshyPHP This error pops up when I'm trying to install ext-mediaembed in the admin panel. All the other extensions works fine, but they already been installed before I upgraded to beta4 today, but ext-mediaembed I'm trying to install for the first time now.

    I've just installed a fresh copy of beta-4. After making sure that the forum worked, I installed the extension by running this at the root of the forum:

    composer require s9e/flarum-ext-mediaembed

    Then I went to the admin panel and enabled the extension. Once the extension enabled, I posted a new thread with a YouTube video and it worked as expected.

      JoshyPHP I did "composer require s9e/flarum-ext-mediaembed", it appears in admin panel, but I cant enable it, because of the error. It's strange, but it's the fact. Maybe I miss any extension to be able to add mediaembed?

      I don't think so, the extension doesn't really do anything. Have you tried toggling another extension? I don't know what that error means. @Franz or @Toby any idea?

      Ignivis That error means you're using an outdated version of the admin JavaScript, which is sending the incorrect "fake HTTP method override" header. This implies that you're using a dev version rather than beta 4. If you're doing this intentionally, then you will need to manually recompile the JavaScript. If not, make sure "minimum-stability" is set to "beta" in your composer.json file and run composer update... or just try doing a fresh installation.

        SeeD That's correct. What kind of calendar would you want to embed? I feel like the forum layout is too narrow to hold a calendar.

        • SeeD replied to this.

          JoshyPHP Was thinking of embedding a Google calendar. It's responsive and should fit.

          Well the only way to do this is to add it directly in phpmyadmin. LOL!

          5 days later
          9 days later

          JoshyPHP Thank you for made this amazing extension. I have a question about manually add a website. I already read the link of the MediaEmbed configurator. But I dont know how to create an extension to run it.
          I already finished the composer.json file. But I dont know what code should be the bootstrap.php file.
          The website what I want to add:

           $configurator->MediaEmbed->add(
              'tucao',
                  [
                      'host'    => 'tucao.tv',
                      'extract' => "!tucao\\.tv/play/h(?'id'[-0-9A-Z_a-z]+)!",
                      'iframe'  => [
                          'width'  => 560,
                          'height' => 315,
                          'src'    => 'http://www.tucao.tv/mini/{@id}.swf'
                      ]
                  ]
              );

            AthenaTennos Using the extension's own bootstrap as a template, here's what I'd use:

            namespace AthenaTennos\Tucao;
            
            use Flarum\Event\ConfigureFormatter;
            use Illuminate\Events\Dispatcher;
            
            function subscribe(Dispatcher $events)
            {
            	$events->listen(
            		ConfigureFormatter::class,
            		function (ConfigureFormatter $event)
            		{
            			$event->configurator->MediaEmbed->add(
            				'tucao',
            				[
            					'host'    => 'tucao.tv',
            					'extract' => "!tucao\\.tv/play/h(?'id'[-0-9A-Z_a-z]+)!",
            					'iframe'  => ['src' => 'http://www.tucao.tv/mini/{@id}.swf']
            				]
            			);
            		}
            	);
            };
            
            return __NAMESPACE__ . '\\subscribe';

            In this example I omitted the iframe's dimensions, which will default to 640 × 360. Of course if you prefer it to be smaller you can use the same dimensions as your previous example.

              JoshyPHP
              I have a url

              and

              $event->configurator->MediaEmbed->add(
              			'ggmaps',
              			[
              				'host'    => 'google.com',
              				'extract' => "!www\\.google\\.com/maps/place/(?'address'[\S|\s]+)!",
              				'iframe'  => ['src' => 'https://www.google.com/maps/place/{@address}']
              			]
              		);

              but It don't work.

                BinhQuang The URL you use for your iframe cannot be embedded. Google explicitly instruct your browser not to display it in an third party iframe, that's why. If you have an API key you can use the Google Maps Embed API.

                  a month later

                  JoshyPHP Hi, how do I edit the youtube video parameters that output in the forum. I would like customize the embed player options. I'm unsure of which file that I'm suppose to edit, could you direct me please.

                    witech You should be able to make a small extension rather than edit files but it would have to run after this one. I believe that Illuminate\Events\Dispatcher::listen() has a third optional parameter that sets the priority. Subscribe to the ConfigureFormatter event and you'll have the original template in $event->configurator->tags['YOUTUBE']->template. It's an object that you can read/write as a string.

                    If you want to manipulate the template as a DOM, grep Flarum's source for configureExternalLinks and it'll give you an example.

                    2 months later