Clear the browser's cache after changing javascript files. Otherwise, browser may be still using the old file and this is probably the reason why you can't see any changes.
If you paste here the code that you're using to integrate CKFinder with FCKeditor then we might be able help you, otherwise I can just say that when following properly the instructions, everything should work fine.
I have several functions like this for my web page components ; the reason I loop for a certain number o times is because i have a certain number of Tabs that are created , so i have a certain number of editors "standing by" . Only one is accesed at a certain time so there is no problem with multiple instance interference.
Re: Help! Integration fails!
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Help! Integration fails!
Re: Help! Integration fails!
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Help! Integration fails!
function h_createEditor(val){ document.getElementById("h_but").onclick=function(){h_removeEditor(val);} ; <?php for($i=1;$i<=$this->numTabs;$i++){ echo 'if(val=='.$i.'){ '; echo ' if ( h_editor'.$i.' ) '; echo 'return;'; echo 'var h_html'.$i.' = document.getElementById( \'h_editorcontents'.$i.'\' ).innerHTML; '; echo 'document.getElementById(\'h_editorcontents'.$i.'\').innerHTML="" ;'; echo 'h_editor'.$i.' = CKEDITOR.appendTo( \'h_editorI'.$i.'\' );'; echo 'h_editor'.$i.'.setData( h_html'.$i.' );'; echo ' CKEDITOR.replace( \'h_editor'.$i.'\', { filebrowserBrowseUrl : \'/ckfinder/ckfinder.html\', filebrowserImageBrowseUrl : \'/ckfinder/ckfinder.html?Type=Images\', filebrowserFlashBrowseUrl : \'/ckfinder/ckfinder.html?Type=Flash\', filebrowserUploadUrl : \'/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files\', filebrowserImageUploadUrl : \'/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images\', filebrowserFlashUploadUrl : \'/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash\' }); /* var ed $i = CKEDITOR.replace( \'h_editor$i\'); CKFinder.SetupCKEditor( ed$i, \'/ckfinder/\' ) */ '; echo '} '; } ?> }//createEditor