Block data deleting when added - only in IE
PermalinkI'm having some really odd issues that are only happening in IE. With at least two blocks I'm using - 'Plain Text' and 'Add FAQs', after entering text into the field in edit block mode and then clicking add, the block doesn't display any text at all and if I click to re-edit the newly added block, it shows no text in the field that I just added text to.
I've duplicated the entire site and put it on another server and it has the same IE issues there so I know it's not a server thing. I also just upgraded one of those C5 versions and it still behaves the same way. My guess is it's some wierd DB issue but it's just odd to me that it is occuring in two different blocks, never occurs in the content editor block and only happens in IE.
Any thoughts? I'm totally clueless on this one.
Thanks.

I then completely duplicated the add_faq block, renamed it and installed it. After adding it with IE, it was still causing the same problems.
I then tried adding other blocks and they all produced the same results, except for the content block. For some reason, the content block is fine and allows IE users to add content with no issues.
Could this be a javascript issue? I'm not seeing any javascript errors in IE but because it's happening only in IE and across all blocks, except for content editor, which makes me think it might be.
Any thoughts? Anyone? Bueller?
I swapped my entire theme out with another one and am not experiencing the issue anymore so it is definitely not a db issue and is related to my theme somehow - guessing a js issue.
Guess I'll start stripping out bits of my theme code and see if I can identify the culprit.
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Removing that line causes everything to work fine in IE. So I thought I'd just put it inside of a check to see if the user is logged in like:
<?php $uinfo = new User(); if($uinfo->IsLoggedIn()){ } else { ?> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <?php } ?>
But that causes IE to freak out and crash upon each new page load. It's almost like it's having to switch to IE7 mode each time the page loads and that is what is causing it to flip? Any thoughts on this? I think I might start a new post with just this listed as the problem.
I hope this helps you.