Hello, I'm new to using CKEditor (I used previous versions though, when it was called FCKEditor). Anyway, I installed the editor on my server and set it up on my pages just as the instructions say, but the editor window does not show up in Internet Explorer (I'm using IE7). It shows up fine in Safari and Firefox, but not getting any love from IE. Any ideas why this might be? The editor site says it works with IE, so I must have done something wrong. This is the code I have in the page to add the editor window:
I also have the Javascript call at the top of the page. Does anyone have any ideas why this does not show up in IE? Thanks!
<textarea name="text" cols="50" rows="30" id="text"><?= htmlspecialchars($text); ?></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'text',
{
toolbar : 'Basic',
});
</script> I also have the Javascript call at the top of the page. Does anyone have any ideas why this does not show up in IE? Thanks!

Re: CKEditor won't work in IE7!
IE8
Re: CKEditor won't work in IE7!
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
Which worked fine in all but IE. But for IE, turns out that you need the extra '/' before 'ckeditor/ckeditor.js' like this:
<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
Had no trouble after that. Just a thought, hope this helps.
Re: CKEditor won't work in IE7!
../ckeditor.js/dir_from_root/ckeditor.js
Re: CKEditor won't work in IE7!
...remove the comma after 'Basic' so that you have:
<textarea name="text" cols="50" rows="30" id="text"><?= htmlspecialchars($text); ?></textarea> <script type="text/javascript"> CKEDITOR.replace( 'text', { toolbar : 'Basic' }); </script>...only for the last attribute though.