ShowAdditionalMeta, ShowPageEncoding Undocumented

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.
This thread is closed to new posts. You must sign in to post in the forums.
1/25/2009 7:03:08 AM
Gravatar
Total Posts 5

#1 for IT Support in Brisbane

ShowAdditionalMeta, ShowPageEncoding Undocumented

 

Sorry if this actually is documented somewhere, but I only found out by googling the novell SVN.

It might be handy for other if the following is documented in web.config, even if they are commented out....

<add key="ShowAdditionalMeta" value="true" />
<add key="ShowPageEncoding" value="true" />

At first I couldn't work out why the settings had dissapeared after an upgrade.

Thanks
Lachlan
 

1/25/2009 7:28:15 AM
Gravatar
Total Posts 18439

Re: ShowAdditionalMeta, ShowPageEncoding Undocumented

Hi Lachlan,

Those settings were not in Web.config because its not implemented well and having these settings available makes it possible for a user to break the site if they add some malformed additional meta data and the only way to fix it is directly in the db. So I'm trying to avoid support for settings that non tech folks should not mess with and even tech folks can get into trouble with.

Your ability to find them proves you are worthy to change them :-)

At your request I'm adding it to Web.config with a strong warning against changing them:

<!--
Setting these to true will make it possible to edit additional meta and pageencoding.
WARNING
I recommend you leave this hidden and do not change these settings.
If a user enters something wrong in these settings it can
break the site and the only way to fix it will be removing the bad data directly from the db.
Also I don't recommend changing the page encoding from what have as the default.
If you do change it then you may experience skinning problems or
javascript problems or captchas not working.
-->
<add key="ShowAdditionalMeta" value="false" />
<add key="ShowPageEncoding" value="false" />

Maybe someday we can implement it better with some kind of validation.

Best,

Joe

You must sign in to post in the forums. This thread is closed to new posts.