CKFinder:PHP:InvalidCsrfTokenException:无效的 CSRF 令牌
CKFinder: PHP : InvalidCsrfTokenException: Invalid CSRF token
当我尝试上传文件时出现以下错误:
<b>Fatal error</b>: Uncaught CKSource\CKFinder\Exception\InvalidCsrfTokenException: Invalid CSRF token. in D:\xampp\htdocs\mysite\includes\ckfinder\core\connector\php\vendor\cksource\ckfinder\src\CKSource\CKFinder\CKFinder.php:245
Stack trace:
这是 ckfinder 的新安装
最简单的解决方案(尽管不推荐)是在 CKFinder 中禁用 CSRF 保护。对于 PHP 连接器,您可以使用 csrfProtection 选项,只需将其设置为 false
:
$config['csrfProtection'] = false;
推荐的方式是让CKFinder生成CSRF token并在提交表单时使用它(表单字段应命名为ckCsrfToken
):
var finder;
CKFinder.start({
onInit: function(instance) {
// Save finder instance to use it later
finder = instance;
}
});
// Later you can obtain the token the following way
console.log(finder.request('csrf:getToken'));
当我尝试上传文件时出现以下错误:
<b>Fatal error</b>: Uncaught CKSource\CKFinder\Exception\InvalidCsrfTokenException: Invalid CSRF token. in D:\xampp\htdocs\mysite\includes\ckfinder\core\connector\php\vendor\cksource\ckfinder\src\CKSource\CKFinder\CKFinder.php:245
Stack trace:
这是 ckfinder 的新安装
最简单的解决方案(尽管不推荐)是在 CKFinder 中禁用 CSRF 保护。对于 PHP 连接器,您可以使用 csrfProtection 选项,只需将其设置为 false
:
$config['csrfProtection'] = false;
推荐的方式是让CKFinder生成CSRF token并在提交表单时使用它(表单字段应命名为ckCsrfToken
):
var finder;
CKFinder.start({
onInit: function(instance) {
// Save finder instance to use it later
finder = instance;
}
});
// Later you can obtain the token the following way
console.log(finder.request('csrf:getToken'));