Hello.
Just reproduced in askbot the problem I have in my local environment.
When clicking on post your answer button using IE9, I am being redirected to a page that doesn't exist. However, my answer is posted.
This is what I am getting:

and this is my exact version of IE:

I don't have the same problem using Chrome or Mozilla. Anyone else having the same problem?
If you are still having a problem, check around this line of code
if (Modernizr.history) {
// history management works!
} else {
// no history support :(
//hash = unescape(window.location.hash).replace('#','').split("?")[0]
hash = History.unescapeHash(window.location.hash).replace('#','').split("?")[0]
if (hash.substring(0,11)==askbot['urls']['questions']){
url = hash
}else{
url = askbot['urls']['questions']+hash
}
if (hash !== ''){
window.location = 'http://'+window.location.host+url
}
}
and comment out the window.location line. what it's doing is trying to force history into IE when it really doesn't need to.
Also, if your code is a little different look for the askbot['urls']['questions'] and it should be around there.
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-06-27 13:56:18 -0500
Seen: 73 times
Last updated: Sep 13 '12
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.