Try our conversational search powered by Generative AI!

GuiPlugin - PlugInArea.AdminMenu

Vote:
 

Hi, 

Working with Episerver cms 11.2.1.0, I've created a new GuiPlugIn following coding patterns etc, from existing plugins.

My plugin does not show in the Admin Tools area as expected.

Have tried removing all data from tblPlugIn where assembly name matches  MyClient.Web , but on restart, it picked up other plugin's and not the new one.

Can hit the plugin page in dev , localhost/plugins/repbioupload.aspx to test, but ideally, this need to appear in the menu.

There doesn't seem to be any other configuration that makes existing plugins appear.  

Very strange... any help appreciated.

David

using EPiServer.PlugIn;
using System;

namespace MyClient.Web.Plugins
{
[EPiServer.PlugIn.GuiPlugIn(
DisplayName = "Rep Bio Upload",
Description = "Rep Bio Upload Form",
Area = PlugInArea.AdminMenu,
Url = "~/Plugins/RepBioUpload.aspx"
)]
public partial class RepBioUpload : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
}
}

#195065
Jul 12, 2018 13:25
Vote:
 

Hmm, must be local dev environment issue, when I uploaded my code to staging server, the menu item appeared as expected - and plugin works.

I'll eyeball both config files and see what may be the reason.

#195078
Jul 12, 2018 16:26
Ted
Vote:
 

Does resetting your view settings make any difference?

#195103
Jul 13, 2018 10:57
Vote:
 

Just to update, there were no isssues when deployed to stage / prod , so it's something weird wih local settings.

Ted, can you elaborate, resetting view settings?

Thanks,

David

#195403
Jul 24, 2018 10:30
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.