Trying to get Ckeditor and CKfinder to work in drupal, no install instructions to be found:http://docs.cksource.com/CKFinder_2.x
which is where the the readme for CKfinder says to look.
I am trying to do this:
/* Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.filebrowserBrowseUrl = '/sites/all/libraries/ckeditor/ckfinder/browse.php?type=files'; config.filebrowserImageBrowseUrl = '/sites/all/libraries/ckeditor/ckfinder/browse.php?type=images'; config.filebrowserFlashBrowseUrl = '/sites/all/libraries/ckeditor/ckfinder/browse.php?type=flash'; config.filebrowserUploadUrl = '/sites/all/libraries/ckeditor/ckfinder/upload.php?type=files'; config.filebrowserImageUploadUrl = '/sites/all/libraries/ckeditor/ckfinder/upload.php?type=images'; config.filebrowserFlashUploadUrl = '/sites/all/libraries/ckeditor/ckfinder/upload.php?type=flash'; config.scayt_autoStartup = true; } CKEDITOR.replace( 'editor1', { filebrowserBrowseUrl : '/sites/all/libraries/ckeditor/ckfinder/browse.php', filebrowserUploadUrl : '/sites/all/libraries/ckeditor/ckfinder/upload.php', filebrowserWindowWidth : '110', filebrowserWindowHeight : '110' }) ;