Skip to content

修复上传目录设置

Compare
Choose a tag to compare
@moxuandi moxuandi released this 02 Oct 12:08

移除无用的$rootUrl参数。

上传根目录控制,$rootPath改为可在控制器中配置:

public function actions()
{
  return [
    'Kupload' => [
      'class' => 'moxuandi\kindeditor\KindEditorUpload',
      // 可选参数, 参考 config.php
      'config' => [
        // ... 其它参数

        // 前后和后台入口文件在统一位置, /web/index.php, /web/admin.php:
        'rootPath' => dirname(Yii::$app->request->scriptFile),  // 前后台相同
        
        // 前后和后台入口文件在不同的位置, /web/index.php, /web/admin/index.php:
        'rootPath' => dirname(Yii::$app->request->scriptFile),  // 前台
        'rootPath' => dirname(dirname(Yii::$app->request->scriptFile)),  // 后台
      ],
    ],
  ];
}