Haxy 11 Posted April 18, 2018 Posted April 18, 2018 Hi all, I am trying to add setting page for my plugin but still get: "This plugin has no settings to configure." I copied configPage.html from https://github.com/MediaBrowser/roku-bif/tree/master/RokuMetadata/Configuration and I changed pluginId to my plugin GUID from Plugin.cs Restarted Emby server several times and still the same Alert on plugin page
Haxy 11 Posted April 19, 2018 Author Posted April 19, 2018 (edited) So you are all set now? Yes, I am all set up now with empty new plugin but lack of documentation is a pain of the %&*. Can you take a look: https://emby.media/community/index.php?/topic/58150-new-subtitles-download-provider/ Edited April 19, 2018 by Haxy
Luke 42077 Posted April 19, 2018 Posted April 19, 2018 Have you explored our wiki on plugin development: https://github.com/MediaBrowser/Emby/wiki/How-to-build-a-Server-Plugin
pmathbliss 0 Posted July 22, 2018 Posted July 22, 2018 If anyone else is still having troubles with this. I had to add the reference html into the project. If you are using the Roku plugin as a template.https://github.com/MediaBrowser/roku-bif/blob/master/RokuMetadata/RokuMetadata.csproj <ItemGroup> <None Remove="Configuration\configPage.html" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Configuration\configPage.html" /> </ItemGroup> Unload your plugin project, Add these elements, pointing to the location of the settings page. Reload the project Build. When you add the html page to visual studio, it doesnt automatically add the reference, so it wont be in your build.
chef 3810 Posted July 22, 2018 Posted July 22, 2018 (edited) Are you setting the HTML page as an embedded resource? Edited July 22, 2018 by chef
Luke 42077 Posted July 22, 2018 Posted July 22, 2018 Correct, yes it needs to be manually marked as an embedded resource.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now