Can't save hostname changes after upgrading to 7.5
I'm running a test of upgrading from 7.2.8 to 7.5. After upgrading, I now can not save anything in the Hostnames section. I hit "Save" and...nothing happens. I've watched the traffic in Fiddler and nothing gets sent to the server (so there's no errors in the log file).
I have noticed that when I open the Culture and Hostnames window, an error appears in the console window:
Uncaught TypeError: $(...).live is not a function
If I run $.fn.query I get back a version of "2.2.4". .live() is no longer a function after version 1.9, which would explain the error.
Did something go wrong with the upgrade here or am I missing something?
Somewhat related, I've tried upgrading to 7.4.3 in the past but had similar issues where hitting the save button did nothing on Templates and Document Types.
Oh, well then it's not just me :). Thanks for mentioning the link to the issue.
For what it's worth (if you guys haven't already fixed this), I did a search in files and also found a live() in the folderbrowser.js file.
Also, in the fixed file you guys have .on(event, function) whereas the recommended replacement is .on(event, selector, function) to match the behavior of .live().
Can't save hostname changes after upgrading to 7.5
I'm running a test of upgrading from 7.2.8 to 7.5. After upgrading, I now can not save anything in the Hostnames section. I hit "Save" and...nothing happens. I've watched the traffic in Fiddler and nothing gets sent to the server (so there's no errors in the log file).
I have noticed that when I open the Culture and Hostnames window, an error appears in the console window:
Uncaught TypeError: $(...).live is not a function
If I run
$.fn.query
I get back a version of "2.2.4"..live()
is no longer a function after version 1.9, which would explain the error.Did something go wrong with the upgrade here or am I missing something?
Somewhat related, I've tried upgrading to 7.4.3 in the past but had similar issues where hitting the save button did nothing on Templates and Document Types.
Yup, sorry about that :-) http://issues.umbraco.org/issue/U4-8868
Oh, well then it's not just me :). Thanks for mentioning the link to the issue.
For what it's worth (if you guys haven't already fixed this), I did a search in files and also found a
live()
in the folderbrowser.js file.Also, in the fixed file you guys have
.on(event, function)
whereas the recommended replacement is.on(event, selector, function)
to match the behavior of .live().http://jquery.com/upgrade-guide/1.9/#live-removed
is working on a reply...