1

Once I deployed 'my' solution client once logged into sitecore cms can't see menu items? See: enter image description hereenter image description here

Client is furious(understandably), what can I do?

Marek brought to my attention that I should check browser for error messages which I did:enter image description here Thanks Marek, it seems to be jquery conflict, right? How come I didn't receive same error running same version locally?

edit 2: Fixed the browser error by following this link, but problem still persists ...

Community
  • 1
  • 1
krul
  • 2,211
  • 4
  • 30
  • 49
  • Are there any errors in the browser console? – Marek Musielak Nov 30 '15 at 08:21
  • yes, there are, it seems to be a jquery conflict, see new picture; but how come I don't have same issue locally ? – krul Nov 30 '15 at 08:25
  • `Unexpected token` in `jquery-1.10.2.min.js`? Can you check what is the response of this file? – Marek Musielak Nov 30 '15 at 08:34
  • I found the solution on stack overflow that involves deleting some invisible characters at the end of the mentioned jquery file. That fixed browser error but problem still persists now with no error in browser console ... – krul Nov 30 '15 at 08:40
  • This might be a long shot, but can you clear browser cache? also,are you getting any 404 responses in Network tab? – Ahmed Okour Nov 30 '15 at 15:43
  • No, no 404 and cache & cookie cleaned ... – krul Nov 30 '15 at 16:09
  • @krul Maybe try to copy /sitecore folder from a clean instance – Ahmed Okour Dec 02 '15 at 16:17
  • 1
    Use a file diff tool to compare the directories between the deployed version and the development environment. Also check region settings on the server are consistent with the development environment. It really looks like something to do with languages - perhaps the user profile is set to use a Sitecore Shell Language that is not installed? – Richard Hauer Dec 06 '15 at 15:41

1 Answers1

0

This can happen when the client language is not supported by Sitecore.

You can set the Clent Language in configuration.

<setting name="ClientLanguage" value="en-US" />

Read more on the subject here: http://mhwelander.net/2013/05/30/language-settings-in-sitecore/

Martin Davies
  • 4,436
  • 3
  • 19
  • 40
  • I had it set as '' that should be sufficient ? Problem still persists ... – krul Nov 30 '15 at 08:09
  • I don't know why this would have happened, but you should be able to resolve it by clearing the cookies or by adding `sc_lang=en` to the url while in the Sitecore client – Martin Davies Nov 30 '15 at 10:23