We have an Umbraco 4.7.1 installation where the Umbraco backend saves every dictionary item on every keypress. It looks like every keypress triggers the jquery/javascript code near the bottom of /umbraco/settings/editDictionaryItem.aspx
Both the bindSaveShortCut() and the line starting with UmbClientMgr, runs on every keystroke, and somewhere along the way in the javascript code coming from the DependencyHandler the dictionary item is saved and the bubble message is displayed, ignoring the keystroke in the textbox on the way. The save takes place because the javascript posts the editdictionaryitem.aspx form. But oddly enough it is not performed by the __doPostBack() function coming from the asp.net code generating the form.
We see this in the latest versions of IE, Firefox and Chrome, so it's not a browser specifik issue.
Weve tried nuking the /umbraco and /umbraco_client folders and bin folders, then copying from a fresh download and restarting the site in IIS, but no dice.
Also we've tried downloading a copy of the site to a local machine and running it from there, but the problem only exists on the production server.
We finally solved this problem ourselves. Here's what happened, and what we had to do to solve the problem:
We did an upgrade on the site from to the latest version of Umbraco by copying over new versions of /umbraco /umbraco_client and /bin folders, and started using the site. What we didn't do was clean out the temp folders below /App_Data/temp. One of the folders below this folder contains the cached versions of the scripts the Client Dependency framework pushes out. When we deleted these folders everyting started working again.
My guess is that some changes has been made to some of the javascript and html output and that the upgrade caused our installation to start sending out upgraded html, but the old cached versions of the javascript, and that this situation caused the problems we were seeing.
I cleaned up all the temp files but this does not help. Whenever I try to change for example the Alias of one of my Document Types the page reloads en tell's me it's saved...
Dictionary item saved on every keypress
We have an Umbraco 4.7.1 installation where the Umbraco backend saves every dictionary item on every keypress. It looks like every keypress triggers the jquery/javascript code near the bottom of /umbraco/settings/editDictionaryItem.aspx
<script type="text/javascript">
Both the bindSaveShortCut() and the line starting with UmbClientMgr, runs on every keystroke, and somewhere along the way in the javascript code coming from the DependencyHandler the dictionary item is saved and the bubble message is displayed, ignoring the keystroke in the textbox on the way. The save takes place because the javascript posts the editdictionaryitem.aspx form. But oddly enough it is not performed by the __doPostBack() function coming from the asp.net code generating the form.
We see this in the latest versions of IE, Firefox and Chrome, so it's not a browser specifik issue.
Weve tried nuking the /umbraco and /umbraco_client folders and bin folders, then copying from a fresh download and restarting the site in IIS, but no dice.
Also we've tried downloading a copy of the site to a local machine and running it from there, but the problem only exists on the production server.
Any ideas
Regards
Jesper Hauge
We finally solved this problem ourselves. Here's what happened, and what we had to do to solve the problem:
We did an upgrade on the site from to the latest version of Umbraco by copying over new versions of /umbraco /umbraco_client and /bin folders, and started using the site. What we didn't do was clean out the temp folders below /App_Data/temp. One of the folders below this folder contains the cached versions of the scripts the Client Dependency framework pushes out. When we deleted these folders everyting started working again.
My guess is that some changes has been made to some of the javascript and html output and that the upgrade caused our installation to start sending out upgraded html, but the old cached versions of the javascript, and that this situation caused the problems we were seeing.
.Jesper
Good day,
I have a similar problem.
I am getting the following error:
I cleaned up all the temp files but this does not help. Whenever I try to change for example the Alias of one of my Document Types the page reloads en tell's me it's saved...
is working on a reply...