Hi,
For a website I'm creating, I created a custom connector to upload files, retrieve them, ect. Since the file aren't stored on the disk (but on a cloud storage medium), I could not use the default settings.
All works fine except for the thumbnails. All images are shown as file-icons (see attachment). An image defined by a GUID as it's name, and is accessible by a url
- http://localhost:50962/nl/Uploads/GetImage/Upload/c824d824-143a-4999-a0a4-4293e20116b2?height=100&width=100&mode=crop
- or http://localhost:50962/nl/Uploads/GetImage/c824d824-143a-4999-a0a4-4293e20116b2?height=100&width=100&mode=crop
Both urls are confirmed as working (and they work fine when back in CkEditor).
I tried both XML's in attachment, but neither is working. Any ideas what might be wrong?
I do believe the files need
I do believe the files need to have a recognizable extension so CKFinder can render them, like .jpg, .png, etc.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Thanks a lot! Your comment
Thanks a lot! Your comment helped me resolve the issue. I just added the filename of the original file (I have it stored in the database) to the Guid, and requests started coming in the ThumbnailCommandHandler, which I was than able to customize to retrieve it from the file storage.
Working like a charm now!