I am trying to configure the ability for users to upload images but I am having trouble following the docs on how to do this and even watched a few YouTube videos on integration with Drupal with no success.
I am using the jquery.config method as I am trying to integrate CKEditor with Perch CMS and that is what the developers advised.
Here is my jquery config file that allows me to customise the toolbar. What I need now is the ability to upload images with the image tab or other button.
Any help appreciated.
I am using the jquery.config method as I am trying to integrate CKEditor with Perch CMS and that is what the developers advised.
Here is my jquery config file that allows me to customise the toolbar. What I need now is the ability to upload images with the image tab or other button.
//<![CDATA[
$(function()
{
var config = {
toolbar:
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'],
['Image'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock']
]
};
// Initialize the editor.
// Callback function can be passed and executed after full instance creation.
$('textarea.ckeditor').ckeditor(config);
});
//]]>Any help appreciated.

Re: Problem configuring image upload feature
http://docs.cksource.com/CKEditor_3.x/D ... le_Browser
http://docs.cksource.com/CKEditor_3.x/D ... ploader%29
Re: Problem configuring image upload feature
Re: Problem configuring image upload feature
Re: Problem configuring image upload feature
<script type="text/javascript"> //<![CDATA[ $(function() { var config = { toolbar: [ ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'], ['Image','Maximize'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'] ], filebrowserUploadUrl : '/uploads/', filebrowserBrowseUrl : '/uploads/' }; // Initialize the editor. // Callback function can be passed and executed after full instance creation. $('textarea.ckeditor').ckeditor(config); }); //]]> </script>I looked at the example and neither browse or the uploads files and folders exist in my ckeditor directories that I downloaded from the site i.e. Example 1
CKEDITOR.replace( 'editor2', { filebrowserBrowseUrl : '/browser/browse.php?type=Images', filebrowserUploadUrl : '/uploader/upload.php?type=Files' });What am i missing ?
Re: Problem configuring image upload feature
The custom browser has full details, if you do the easy thing and use CKFinder there's specific instructions on how to integrate that, but I'm not familiar with them. It's around those other docs though
Re: Problem configuring image upload feature