Hi,
I've got strange problem (probably something simple) with my cms built with CKEditor.
After uploading files to production server, CKEditor window stopped showing up.
I checked paths to ckeditor.js - it's OK.
I am using basic configuration with my own scripts to upload and browse files.
<script type="text/javascript"> CKEDITOR.replace( 'content', { filebrowserBrowseUrl : 'http://path/filemanager/browse.php', filebrowserUploadUrl : 'http://path/filemanager/upload.php' }); </script>
I am using Smarty (above code is in {literal}...{/literal} for proper page rendering) just below my <textarea> with content to edit.
When JS is turn off in web browser normal (just html) textarea shows. When JS is turn on, textarea disapears (it is still visible in markaup), which means JS and CKEDITOR.replace is doing its job.
Why this textarea is not visible? Please help. Any suggestions will be appreciated.