I am using CkFinder 3 ASP.NET with FTP backend file system Nuget package CKSource.FileSystem.Ftp
. CkFinder is integrated with CkEditor to upload the files in the website content.
The FTP connector works and I am able to browse and upload files, but I have a problem with the URL's that are being generated. When I select a file in CkFinder, the following URL proxy is generated:
http://domain/path/to/ckfinder/connector?command=Proxy&lang=en&type=Images¤tFolder=%2F&hash=ea8d60299e82343398f8ef2451c2b22b3c8cc8c6&fileName=img0_1024x768.jpg
I tried settings useProxyCommand="false"
for the FTP back-end, but after I did that, the URL is not being generated at all. After selecting the file in the Browse Server dialog, the URL text box stays empty.
My FTP is backed with a HTTP server so every file on the ftp has a corresponding HTTP URL. I need to generate a proper http://
URL for the file selected in the Server Browser (CkFinder) window.
I also tried to set a baseUrl
parameter for the FTP backend specifying the base URL as a value, but it did not help.
How do I set up CkFinder FTP backend so that the file selected in Browse Server dialog is translated into an HTTP url that points directly to the file, without using proxy?