图片在 ckfinder 中上传但不显示在 ckeditor 中
image uploads in ckfinder but not showing in ckeditor
当我使用 ckfinder 上传时,file/image 上传到定义的文件夹中,
但它 return 一个 url 到 ckeditor,使用 url 图像没有加载到 ckeditor 中,我不知道为什么,我在本地主机上工作,
我的配置如下-
baseUrl = "/var/www/html/WC/joseph/plugins/ckfinder/userfiles/"
ckfinder return与 ckeditor 相同 url,但它不使用 http://localhost 加载图像,图像加载,
但我无法将配置更改为 locahost,当我更改它时上传不起作用,请任何人帮助我
baseUrl
选项,正如您可以从名称中猜到的那样,用于定义基数 URL。看起来您已将服务器上的物理目录路径传递给它,这是不正确的。相反,您应该将指向 userfiles
文件夹位置的 URL 放在那里。
根据您问题中的目录路径,我们假设您的网站在 https://example.com
域下可用,并且该域的根文件夹由 /var/www/html/WC/
目录提供。在这种情况下,您应该定义 baseUrl
如下:
baseUrl = "https://example.com/joseph/plugins/ckfinder/userfiles/"
CKFinder 将知道如何构建 URL-s 文件来解决问题。
当我使用 ckfinder 上传时,file/image 上传到定义的文件夹中, 但它 return 一个 url 到 ckeditor,使用 url 图像没有加载到 ckeditor 中,我不知道为什么,我在本地主机上工作,
我的配置如下-
baseUrl = "/var/www/html/WC/joseph/plugins/ckfinder/userfiles/"
ckfinder return与 ckeditor 相同 url,但它不使用 http://localhost 加载图像,图像加载,
但我无法将配置更改为 locahost,当我更改它时上传不起作用,请任何人帮助我
baseUrl
选项,正如您可以从名称中猜到的那样,用于定义基数 URL。看起来您已将服务器上的物理目录路径传递给它,这是不正确的。相反,您应该将指向 userfiles
文件夹位置的 URL 放在那里。
根据您问题中的目录路径,我们假设您的网站在 https://example.com
域下可用,并且该域的根文件夹由 /var/www/html/WC/
目录提供。在这种情况下,您应该定义 baseUrl
如下:
baseUrl = "https://example.com/joseph/plugins/ckfinder/userfiles/"
CKFinder 将知道如何构建 URL-s 文件来解决问题。