flame I've just tried to make an Extension for media embeding and after click on the icon for activating the extension my server crash and is now giving a permanent 500 error (http://beta.communiti.ch) My extension code can be found here: https://github.com/flame05/flarum-mediaembed
flame I've updated the extension. Now it installs and disinstall correctly without crashing. Any ways the embeding process is not working..
luceos Some suggestions: Flarum\MediaEmbed is not the correct namespace for your extension. Publishing this extension under that Vendor name (Flarum) will give people the impression you are a core developer. Use your own vendor name, the namespace would be: Flame05\MediaEmbed. Your composer file requires php 5.4; Flarum actually requires 5.5.9+ (just like Laravel 5.1). You can also drop this requirement completely, because the php version constraint is also set in the other requirement: flarum/core. If you need help debugging an extension, it is very useful to learn how to get the error log, without that it's almost impossible to debug. Also enable debug mode if you haven't already. The error log will give information when the 500 error is generated before hitting the application.