Hey, sorry to pose a very dull and probably very simple question, but I've been trawling forums and api docs for hours and nothing works.
I'm using wamp. Trying to get ckfinder to integrate with ckeditor. The page <head> looks like this:
the directory structure is like:
www.
..Project.
....ckeditor/...
....ckfinder/...
....template.html
I've checked with firebug and all of the javascript source files are being loaded and not throwing any error messages. However nothing is loaded, the upload tab doesn't appear in the image box, nor does the browse server button next to the url.
I'm using wamp. Trying to get ckfinder to integrate with ckeditor. The page <head> looks like this:
<title><?php echo $data['site']['title'].' • '.$page['title']; ?></title> <script type="text/javascript" src="<?php echo BASE_URL; ?>/ckeditor/ckeditor.js"></script> <script type="text/javascript" src="<?php echo BASE_URL; ?>/ckfinder/ckfinder.js"></script> <link rel="stylesheet" media="all" href="<?php echo BASE_URL; ?>/style.css" /> <script type="text/javascript"> window.onload = function() { var editor = CKEDITOR.replace( 'page-content', { colorButton_colors : 'ff0000, 000000', removePlugins : '', toolbar_Spoonley : [ ['Source','-','Preview'],['Cut','Copy','Paste','PasteFromWord','SpellChecker'], ['Undo','Redo'],'/', ['Bold','Italic','Underline'],['NumberedList','BulletedList'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],['Link','Unlink'], ['Image','Table','HorizontalRule'],'/', ['Format','Font','FontSize'], ['TextColor','-','About'] ], toolbar : 'Spoonley', } ); CKFinder.SetupCKEditor( editor, '<?php echo BASE_URL; ?>/ckeditor/' ); }; </script>
the directory structure is like:
www.
..Project.
....ckeditor/...
....ckfinder/...
....template.html
I've checked with firebug and all of the javascript source files are being loaded and not throwing any error messages. However nothing is loaded, the upload tab doesn't appear in the image box, nor does the browse server button next to the url.
Re: CKFinder won't load with CKEditor
to