I have CKEditor installed and working great except for one small but irritating thing -- I am using a 3rd party upload tool (written in classic ASP) and the upload itself goes fine, the image is uploaded but when I click on the "OK" button, I keep getting the "Image Source URL Is Missing" error message. I have searched and searched where to place the Base Image URL (which in my case happens to be /content_images/) but can't find it anywhere. Can you please just tell me quickly in what config file do I need to place this folder location and what do I call it? I've tried filebrowserImageURL : '/content_images/' and just about every other possibility I can think of but nothing works to simply let the system know that all images are uploaded to the /content_images/ folder and to simply look there for all images.
Thank you very much
Thank you very much
Re: Image Source URL Is Missing
Hi DonT55,
The only configuration settings in CKEditor are the paths to the upload tool.
The upload tool is responsible for uploading the file to the correct directory and returning that directory path to CKEditor when you click "OK".
The "Image Source URL Is Missing" error message seems to indicate that the uploader isn't passing the URL to CKEditor in a way that CKEditor can understand it.
This page in the Developers Guide explains how to pass the the URL to CKEditor:
Integrating CKEditor with a Custom File Browser
About halfway down the page is this section:
Passing the URL of the Selected File
Example 2 shows how to pass the URL using JavaScript.
Be Well,
Joe