Kcfinder上传图片问题

Kcfinder Upload image issue

我的站点是带有 kcfinder 和 ckeditor 的 Codeigniter,我的问题是当我尝试上传和加载图像时,该图像正确上传到自动创建的文件夹中 /assets/kcfinder/.thumbs/images/,但是当我select来自服务器的图像时,URL是错误的,我看不到它。如何设置正确的路径?

我认为问题是您需要在图像路径中添加基础 url

base_url() 。 'images/'。 $img;

我已经解决了问题。 在 ../assets/kcfinder/config.php 我改变了:

'uploadURL' 从 "upload" 到绝对 url 并且在 'uploadDir' 从 "" 到 "upload" 并且成功了!

谢谢。

您还可以使用以下代码来设置您的 KcFinder 配置设置:

<?php
/**
 * KcFinder has a SESSION key name 'KCFINDER'
 * You can use this as setup your dynamic config vales
 * if you set uploadURL and uploadDir via SESSION, KcFinder ignore config.php
 * to get these values and it start using SESSION values
 */
$_SESSION['KCFINDER'] = array(
    'disabled'  => false,
    'uploadURL' => 'http://www.example.com/upload',
    'uploadDir' => 'var/htdocs/www/upload'
);

更多:See Link