CKFinder3无效的请求错误

时间:2018-05-04 08:04:27

标签: php ckfinder

大家好! 我想使用CKFinder 3 PHP版本。

我从官方网站下载CKFinder zip文件。

然后我安装XAMPP 7.2.4来部署CKFinder。 enter image description here

我在端口80启动Apache Web服务器。

然后我将CKFinder文件复制到/ XAMPP / htdocs / enter image description here

为了确保PHP环境正确,我按照官方网站创建了一个test.php,其中包含以下代码: enter image description here enter image description here

我还会关注该网站更新config.php文件:

$config['authentication'] = function () {
return true;
};

现在一切正常,但是当我尝试在http://localhost/ckfinder/ckfinder.html访问ckfinder.html时,发生了一些错误。 enter image description here

我可以看到错误日志:

[04-May-2018 10:29:57 Europe/Berlin] PHP Fatal error:  Uncaught CKSource\CKFinder\Exception\InvalidConfigException:
 The temporary folder is not writable for CKFinder in 
 /Applications/XAMPP/xamppfiles/htdocs/ckfinder/core/connector/php/vendor/cksource/ckfinder/src/CKSource/CKFinder/Config.php:331

1 个答案:

答案 0 :(得分:1)

test.php文件似乎已过时,请确保您的系统符合以下要求:

  • PHP 5.6+ 注意:Dropbox后端需要PHP 7.0+。
  • 启用GD扩展(大多数安装时默认),支持缩略图和任何图像操作。
  • 启用了FileInfo扩展程序。注意:默认情况下,在XAMPP上禁用,请阅读“快速入门”以获取更多信息。
  • 支持JSON MIME类型。注意:默认情况下,在IIS Express上禁用,请阅读“快速入门”以获取更多信息。

检查服务器上的错误日志,它应该有关于问题根源的更多详细信息。