Hi,
I've been searching like crazy in the forums for a couple of days already, but I can't seem to figure out how to enable filebrowsing or imageuploading.
What I want is to insert images in the texts, without the need to put in an entire url manually.
Whenever I click the "Image" button I only get a dialog that allows me to put in a url, but no browse button.
I remember I had this working in an older version of FCKeditor I was using, and it worked good. I just can't remember what it was I did.
But because of the improvements (e.g. performance) of 3.0RC I rather use this version, than go back to the save side and revert to the older version again.
Is there anyone who has figured out what files to edit and how to edit them in order to get this working?
I also really like to create a custom config to reduce the amount of buttons to the ones needed.
Thanks in advance.
Herry
I've been searching like crazy in the forums for a couple of days already, but I can't seem to figure out how to enable filebrowsing or imageuploading.
What I want is to insert images in the texts, without the need to put in an entire url manually.
Whenever I click the "Image" button I only get a dialog that allows me to put in a url, but no browse button.
I remember I had this working in an older version of FCKeditor I was using, and it worked good. I just can't remember what it was I did.
But because of the improvements (e.g. performance) of 3.0RC I rather use this version, than go back to the save side and revert to the older version again.
Is there anyone who has figured out what files to edit and how to edit them in order to get this working?
I also really like to create a custom config to reduce the amount of buttons to the ones needed.
Thanks in advance.
Herry
Re: filebrowser/image upload in CKEDITOR 3.0.RC
Re: filebrowser/image upload in CKEDITOR 3.0.RC
Re: filebrowser/image upload in CKEDITOR 3.0.RC
it's not listed there. I remember that either Fred or Wiktor told me that. The editor has to be stabilized and after then the file browser will be implemented.
Sorry, for the inconvenience but consider that version 3 is a complete rewrite!
Re: filebrowser/image upload in CKEDITOR 3.0.RC
Re: filebrowser/image upload in CKEDITOR 3.0.RC
Hi,

just cant figure it out, coase the IDs are generated dynamicaly
and I dont want to rewrite the whole link and image plugins
actualy, I made my own connectors for image/file browse and upload..everything works fine.. just needed to modify the filebrowser/plugin.js a bit
but.. it only works if there is just one CKeditor on page.. OR only the first CKeditors dialog works, it seems as if the second editor/dialog -> updateTargetElement would receive bad data about the editor and dont find the appropriate elements ..
Is there away to directly work with the dialog, like parent.opener.document.getElementById('myid') ? coase that would solve my problem
Re: filebrowser/image upload in CKEDITOR 3.0.RC
OK< so I solved the prolem with multiple editors on page
there is a little bug in filebrowser/plugin.js
you can make something like this :
You just dont get the data for actual editor, but allways the first one.
but...
filebrowser/plugin.js
//place global variable
var globalEditor="";
function browseServer( evt )
{
var dialog = this.getDialog();
var editor = dialog.getParentEditor();
//set current editor
globalEditor=editor;
.......
//my image function
function setImage( imageUrl,imageAlt,width,height,is_thumb,fileUrl,fileTitle, data )
{
var editor = globalEditor;
......
globalEditor._.filebrowserSe.filebrowser.target='info:txtUrl';
//my funct, origin
updateTargetElement( imageUrl, globalEditor._.filebrowserSe );
Re: filebrowser/image upload in CKEDITOR 3.0.RC
Re: filebrowser/image upload in CKEDITOR 3.0.RC
Re: filebrowser/image upload in CKEDITOR 3.0.RC
i have integrated custom image upload, but only working with FF. Not with IE. The problem is FF version after clicking "Browse Server" is poping up a new window for my image browser jsp. But with IE is loading my custom jsp into the window when ckeditor itself was.
Any workaround for this?
many thanks,
Re: filebrowser/image upload in CKEDITOR 3.0.RC
I have CKE working with CKF just fine.
Re: filebrowser/image upload in CKEDITOR 3.0.RC
I am a newbie. I have no upload image icon in the image editor box.
How do I get the upload image icon to appear in the image editor box?
Please can you tell me which file to edit.
what exactly I must add to the file
Where in the file text must I add the additions or subtractions.
Thanks
Re: filebrowser/image upload in CKEDITOR 3.0.RC
That should do it for you.
Re: filebrowser/image upload in CKEDITOR 3.0.RC
This is the solution (3rd from the left): http://ckfinder.com/demo
Re: filebrowser/image upload in CKEDITOR 3.0.RC
The sample code includes 4 files. index.php is the sample home page. The rest of files are in 3 folders: images, browser, and uploader. browser.php and selector.php are the source code for server image browser. uploader.php is the source code for user to upload the image file from their local machine. By default, all the image files will be uploaded to images folder. You must change the ‘images’ folder name in the php source code if you want to put your image files in different folder.
Here is the list of the files of the sample:
index.php
browser/browser.php
browser/selector.php
uploader/uploader.php
Here is the source code of index.php:
Here is the source code of browser.php:
Here is the source code of selector.php:
Here is the source code of uploader.php:
You can download the original source code in attached.
Attachments:
Re: filebrowser/image upload in CKEDITOR 3.0.RC