mirror of
https://github.com/langgenius/dify-docs.git
synced 2026-04-02 14:28:35 +07:00
58 lines
1.9 KiB
Plaintext
58 lines
1.9 KiB
Plaintext
---
|
||
title: 常见问题
|
||
---
|
||
|
||
|
||
|
||
{/*
|
||
贡献者注意:
|
||
----------------
|
||
本文档为旧版文档,即将弃用。
|
||
请勿对此版本进行更改。
|
||
所有更新应指向新版本:
|
||
/plugin-dev-zh/0331-faq
|
||
*/}
|
||
|
||
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0331-faq">
|
||
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
|
||
|
||
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>
|
||
|
||
<p>如果您在新的文档中发现任何差异或需要改进的地方,请使用页面底部的“报告问题”按钮。</p>
|
||
</Card>
|
||
|
||
## 安装插件时提示上传失败如何处理?
|
||
|
||
**错误详情**:出现 `PluginDaemonBadRequestError: plugin_unique_identifier is not valid` 报错提示。
|
||
|
||
**解决办法**:将插件项目下的 `manifest.yaml` 文件和 `/provider` 路径下的 `.yaml` 文件中的 `author` 字段修改为 GitHub ID。
|
||
|
||
重新运行插件打包命令并安装新的插件包。
|
||
|
||
## 安装插件时遇到异常应如何处理?
|
||
|
||
**问题描述**:安装插件时遇到异常信息:`plugin verification has been enabled, and the plugin you want to install has a bad signature`,应该如何处理?
|
||
|
||
**解决办法**:在 `/docker/.env` 配置文件的末尾添加 `FORCE_VERIFYING_SIGNATURE=false` 字段,运行以下命令重启 Dify 服务:
|
||
|
||
```bash
|
||
cd docker
|
||
docker compose down
|
||
docker compose up -d
|
||
```
|
||
|
||
添加该字段后,Dify 平台将允许安装所有未在 Dify Marketplace 上架(审核)的插件,可能存在安全隐患。
|
||
|
||
建议在测试 / 沙箱环境内安装插件,确认安全后再安装至生产环境。
|
||
|
||
{/*
|
||
Contributing Section
|
||
DO NOT edit this section!
|
||
It will be automatically generated by the script.
|
||
*/}
|
||
|
||
---
|
||
|
||
[编辑此页面](https://github.com/langgenius/dify-docs/edit/main/zh-hans/plugins/faq.mdx) | [提交问题](https://github.com/langgenius/dify-docs/issues/new?template=docs.yml)
|
||
|