Is this for Umbraco 7? Does anything show in the back-office, or is it a blank screen?
If it's a blank screen... do you have debug disabled in the Web.config? If so, then my guess is that there is a JavaScript error with a ClientDependency bundle.
I had this happen to me a few weeks ago... turns out one of my JavaScript files had a (valid) line-break in a string, but ClientDependency didn't like it and Chrome threw an error.
UmbClientMgr is not defined
I have this strange problem. Administrator section not working.
URL => polubbaterie [dot] pl/umbraco
in a console :
Uncaught ReferenceError: UmbClientMgr is not defined
Is this for Umbraco 7? Does anything show in the back-office, or is it a blank screen?
If it's a blank screen... do you have debug disabled in the Web.config? If so, then my guess is that there is a JavaScript error with a ClientDependency bundle.
I had this happen to me a few weeks ago... turns out one of my JavaScript files had a (valid) line-break in a string, but ClientDependency didn't like it and Chrome threw an error.
Cheers,
- Lee
Hi Lee,
Yes, its a blank screen. I will try to disable debug from web.config.
Hi Oleksandr,
I've had a quick look at the link you gave.
Chrome dev-tools say:
Uncaught SyntaxError: Unexpected token )
.When I drill down into the script, Chrome dev-tools say that there's something wrong with
function MemberFilterDialogController
.There's a bit in there with this code:
I believe the extra "
)
" is at the end ofgetFilterModel()
.I'm not sure if this is custom code or part of a package?
If it is part of a package, then best to let the developer know about it.
Cheers,
- Lee
is working on a reply...