For some reason my rich text box isnt working in the template editing section... /umbraco#/settings/framed/%252Fumbraco%252Fsettings%252FeditTemplate.aspx%253FtemplateID%253D1061
It also won't allow me to save the page. Its a live website so I dont want to mess around and loose the data in here currently. Any ideas?
And what browser is being used? I have a suspicion it might be a browser issue if you're using IE9< - Otherwise I would probably have a look at the /app_data/logs folder and see if the log reveals anything of use.
Also try having a look at the browser console to see if it reveals any errors - Perhaps some files are missing for some reason.
I had the same problem... In my case I noticed that ClientDependancy was not working correctly. In the response to the JS CD request it was sending back some html four times: - something like
If you use Chrome, go to the Dev tools(Press F12), then refresh the page and look out for any errors reported in the console or network pages.
Does the account that the site is running under have access to the compositeFilePath, in the config file below this is pointing to "~/App_data/TEMP/ClientDependancy"?
It could be CSS Minification so try disabling that. Leave debugging off, and change the enableCssMinify to false.
Rich Text not working in templates
For some reason my rich text box isnt working in the template editing section... /umbraco#/settings/framed/%252Fumbraco%252Fsettings%252FeditTemplate.aspx%253FtemplateID%253D1061
It also won't allow me to save the page. Its a live website so I dont want to mess around and loose the data in here currently. Any ideas?
Hi Donald and welcome to our :)
What exact version of Umbraco are you using? And what browser are you using?
Cheers, Jan
Hey Jan,
We are using Umbraco version 7.1.4
Hi Donald
And what browser is being used? I have a suspicion it might be a browser issue if you're using IE9< - Otherwise I would probably have a look at the /app_data/logs folder and see if the log reveals anything of use.
Also try having a look at the browser console to see if it reveals any errors - Perhaps some files are missing for some reason.
Cheers, Jan
It is has the same problem across IE firefox and chrome. I will check the files
I didnt notice any issue in the log. Any other ideas?
I had the same problem... In my case I noticed that ClientDependancy was not working correctly. In the response to the JS CD request it was sending back some html four times: - something like
and the browser was throwing an unexpected token < error
looking at the html I noticed it was a Unauthorised error - I couldn't work out quite why though.
So by trial and error I disabled CompositeFileProcessor's enableJsMinify in ClientDependancy.config ( its near the bottom of the file).
a quick test would be to change compilation in web.config and set debug to true. This should disable the CD. It might reveal where the problem is.
I didnt understand some of what you said btu when I change
<compilation defaultLanguage="c#" debug="false" batch="false" targetFramework="4.5">
to
<compilation defaultLanguage="c#" debug="true" batch="false" targetFramework="4.5">
It works fine. any ideas why?
I suspect it's a bug in ClientDependency, it's a component that bundles all the javascript or css, and other files into a single file.
The browser only as to make one request to get all the javascript or css, which should make your pages quicker to load over the internet.
I don't have the time to dig much deeper, I saw your screengrab and thought that looks exactly like what happened to me.
So you think I should try to comment out that line?
Well until the bug is fixed it might be better for you to try disabling the JS minification
this is line 45 of my ClientDependency.config file, it might be one a two line different on yours:
change the enableJSMinify attribute to false, remove the debug=true in web.config/compilation and see if it still works.
It doesnt work if I set it to false and turn debug off.
Any ideas?
Some possibles:
If you use Chrome, go to the Dev tools(Press F12), then refresh the page and look out for any errors reported in the console or network pages.
Does the account that the site is running under have access to the compositeFilePath, in the config file below this is pointing to "~/App_data/TEMP/ClientDependancy"?
It could be CSS Minification so try disabling that. Leave debugging off, and change the enableCssMinify to false.
Thank you! it was the CSS minification needed to be disabled.
is working on a reply...