After publishing, my Umbraco admin panel did not show in IE9. But it appear in FF and Chrome browsers

StackOverflow https://stackoverflow.com/questions/14028410

Question

After publishing, my Umbraco admin panel did not show in IE9. But it appear in FF and Chrome browsers.

Note: Before publishing website, I run it from Visual Studio 2012 and I observed that everything was Okay.

Can anyone help me?

in IE9 in Firefox

Était-ce utile?

La solution

A disappearing tree is often related to an error in the Treedataservice.ashx call.

If you use F12 developer tools in IE9 you should be able to get the URL for this web service call from the Network tab, it will look something like this:

http://your-domain.local/umbraco/webservices/TreeDataService.ashx?rnd=d4859dc821714624be368bdafb1dd1d9&id=-1&treeType=content&contextMenu=true&isDialog=false&rnd2=89.4

Then when you call the web-service url from the browser direct you should be able to see the error that is returned and therefore ascertain the exact issue.

I've tested 4.11.1 with IE9 and the tree works correctly, therefore it suggests the issue is with your instance.

If the above web service is functioning correctly (it should return JSON), then it may be worth checking the other webservice calls, such as TreeClientService.asmx for errors.

In most cases checking these webservices will reveal the actual issue which is causing the tree to not render.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top