bug in image gallery setting

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
9/29/2025 9:24:42 AM
Gravatar
Total Posts 152

bug in image gallery setting

Hello,

I noticed a bug or error on both my sites and the demo site.
The problem is related to the image gallery, both old and newly created. When trying to access the module settings, a "page not found" error appears, indicating the inability to manage the settings.
This occurs on the latest version, and I've noticed it's the same on the demo site.

A solution?

9/30/2025 4:20:12 PM
Gravatar
Total Posts 2262

Re: bug in image gallery setting

It's trying to load a non-existent control because removed the old Silverlight features that didn't work anyway. When I did that, I removed the settings for these from the FeatureDefinition file for the Image Gallery but mojo doesn't remove settings when it doesn't find those settings in the FeatureDefinition file (kind of silly but can be useful).

You can run the following SQL to update your sites so they work properly:

delete from mp_ModuleDefinitionSettings
where FeatureGuid ='d572f6b4-d0ed-465d-ad60-60433893b401'
and GroupName = 'SilverlightSettings';

This will be in the next release, due soon.