> ## Documentation Index
> Fetch the complete documentation index at: https://dify-6c0370d8-add-new-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 常见问题

> 本文档解答了关于 Dify 插件开发和安装的常见问题，包括如何解决插件上传失败（通过修改 author 字段）以及如何处理插件安装时的验证异常（通过设置 FORCE_VERIFYING_SIGNATURE 环境变量）。

<Note> ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处，请参考[英文原版](/en/develop-plugin/publishing/faq/faq)。</Note>

## 安装时插件上传失败怎么办？

**错误详情**：出现错误信息 `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 theme={null}
cd docker
docker compose down
docker compose up -d
```

添加此字段后，Dify 平台将允许安装所有未在 Dify Marketplace 上架（审核）的插件，这可能带来安全风险。

建议先在测试/沙盒环境中安装插件，确认其安全性后再安装到生产环境。

***

[编辑此页面](https://github.com/langgenius/dify-docs/edit/main/en/develop-plugin/publishing/faq/faq.mdx) | [报告问题](https://github.com/langgenius/dify-docs/issues/new?template=docs.yml)
