0👍
CKfinder image uploader it’s open https://ckeditor.com/apps/ckfinder/3.4.5/core/connector/php/connector.php?command=Init&lang=en
I’m not sure what do you mean by that but if you are trying to reference demo CKFinder from ckeditor.com
, this won’t work. You need to have CKFinder installed locally on your server.
Assuming that you have CKFinder installed locally, you need to configure its server-side in ckfinder/config.php
file so that it points correct files folder. CKFinder uses Backends and Resource Types for that:
https://ckeditor.com/docs/ckfinder/ckfinder3-php/configuration.html#configuration_options_backends
https://ckeditor.com/docs/ckfinder/ckfinder3-php/configuration.html#configuration_options_resourceTypes
Backends are storage definitions where two most important configuration settings are root
and baseUrl
. The root
points to files folder location on local file system while baseUrl
points to location accessible through HTTP. These are the two settings you need to configure.
Resource Types are root folders for particular types of files. They can be connected
with particular Backend (through backend
property which matches Backend name) and used to further configure the uploaded files path through directory
property.
NOTE:
The &type=Images
in URL in your CKFinder configuration is the name of the Resource Type into which file should be uploaded. If you decide modify your Resource Type, it may be needed to modify that parameter as well.
- [Vuejs]-D3 in Vue application – How to apply zooming on a map
- [Vuejs]-Recreating the dynamic donut chart with SVG and Vue