globalization settings

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.
2/7/2010 6:26:02 AM
Gravatar
Total Posts 171
I am a Russian programmer

globalization settings

Hi, Joe

There is setting 'globalization culture' in the file 'web.config'

<globalization culture="auto:en-US" uiCulture="auto:en-US" requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="iso-8859-15"/>

I have to change it to

culture="auto:ru-RU"

Otherwise, when you edit a page (in TinyMCE or CKeditor) toolbar and all content of editor's windows will be in English.

Can you fix the code system that would not have to change the web.config?

Best regards, Alexander

2/7/2010 8:15:53 AM
Gravatar
Total Posts 18439

Re: globalization settings

Hi Alexander,

See the notes at the bottom of our localization page, you should not change that setting, it should remain as auto:en-US because only the English resource files have no missing keys and if you set it to another language and there are missing keys it can throw null reference exceptions.

Instead you should set the site default culture like this in user.config

<add key="UseCultureOverride" value="true" />
<add key="site1culture" value="ru-RU" />

Note that if you have a multi site installation you must make a setting for each site:

<add key="site2culture" value="ru-RU" />
<add key="site3culture" value="ru-RU" />
...

This way it will use Russian but it can still fall back to English resource strings if the key is missing in the Russian resource file.

Hope it helps,

Joe

2/7/2010 8:52:57 AM
Gravatar
Total Posts 171
I am a Russian programmer

Re: globalization settings

Thank you, Joe

and About new version: You forgot to include file 'pagebg-2.png' in skin folder mitchinson-business3

and i found 2 mistake in the mojoportal (I think they are serious)

1. Do not change the order of pages

2. Ability to make pages with the same URL

Best regards, Alexander

2/8/2010 7:20:18 AM
Gravatar
Total Posts 18439

Re: globalization settings

Hi Alexander,

I added some indexes in svn to solve the long running query. I also fixed the skin was incorrectly referencing a missing image.

For your other items they are unclear. Please make a new thread for each thing you think is a bug and explain it in terms of:

1. Steps to produce the problem

2. Expected outcome

3. Actual outcome

4. optional but ideal is if you can produce the issue on demo.mojoportal.com so I can see the problem.

Best,

Joe

2/8/2010 7:36:31 AM
Gravatar
Total Posts 171
I am a Russian programmer

Re: globalization settings

Hi, Joe

I added the indexes, but query execution time is very very long.

in the form Admin/PageTree.aspx does not work Up and Down button in my database with my data. Button is pressed, but the order of pages does not change. Now I examine the source code of mojoportal that would find the cause of this

Best regards, Alexander

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