Application error: a client-side exception has occurred while loading xxx.xxx.com (see the browser console for more information). #13145

Closed
opened 2026-02-21 19:10:45 -05:00 by yindo · 13 comments
Owner

Originally created by @filwu8 on GitHub (Apr 20, 2025).

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

1.2.0

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

can't open plugin_daemon

plugin_daemon:
image: langgenius/dify-plugin-daemon:0.0.7-local

Uncaught TypeError: Cannot read properties of undefined (reading 'minimum_dify_version')
at page-ed41e9652d10a9ca.js:1:43125
at lS (7aa3e4eb-df755cd629be1b60.js:1:39325)
at ot (7aa3e4eb-df755cd629be1b60.js:1:64573)
at a9 (7aa3e4eb-df755cd629be1b60.js:1:63435)
at a5 (7aa3e4eb-df755cd629be1b60.js:1:63052)
at ov (7aa3e4eb-df755cd629be1b60.js:1:79228)
at ic (7aa3e4eb-df755cd629be1b60.js:1:112360)
at 7aa3e4eb-df755cd629be1b60.js:1:112205
at is (7aa3e4eb-df755cd629be1b60.js:1:112213)
at u9 (7aa3e4eb-df755cd629be1b60.js:1:109424)
at iQ (7aa3e4eb-df755cd629be1b60.js:1:130771)
at iI (7aa3e4eb-df755cd629be1b60.js:1:129010)
at iV (7aa3e4eb-df755cd629be1b60.js:1:129346)
at 7aa3e4eb-df755cd629be1b60.js:1:128638

✔️ Expected Behavior

No response

Actual Behavior

No response

Originally created by @filwu8 on GitHub (Apr 20, 2025). ### Self Checks - [x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general). - [x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones. - [x] I confirm that I am using English to submit this report (我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542)). - [x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:) - [x] Please do not modify this template :) and fill in all the required fields. ### Dify version 1.2.0 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce can't open plugin_daemon plugin_daemon: image: langgenius/dify-plugin-daemon:0.0.7-local Uncaught TypeError: Cannot read properties of undefined (reading 'minimum_dify_version') at page-ed41e9652d10a9ca.js:1:43125 at lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573) at a9 (7aa3e4eb-df755cd629be1b60.js:1:63435) at a5 (7aa3e4eb-df755cd629be1b60.js:1:63052) at ov (7aa3e4eb-df755cd629be1b60.js:1:79228) at ic (7aa3e4eb-df755cd629be1b60.js:1:112360) at 7aa3e4eb-df755cd629be1b60.js:1:112205 at is (7aa3e4eb-df755cd629be1b60.js:1:112213) at u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) at iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) at iI (7aa3e4eb-df755cd629be1b60.js:1:129010) at iV (7aa3e4eb-df755cd629be1b60.js:1:129346) at 7aa3e4eb-df755cd629be1b60.js:1:128638 ### ✔️ Expected Behavior _No response_ ### ❌ Actual Behavior _No response_
yindo added the 🐞 bug label 2026-02-21 19:10:45 -05:00
yindo closed this issue 2026-02-21 19:10:45 -05:00
Author
Owner

@dosubot[bot] commented on GitHub (Apr 20, 2025):

I found a similar discussion thread regarding a client-side exception error: Application error: a client-side exception has occurred (see the browser console for more information). However, this thread is currently unsolved [1].

Regarding the error you're encountering, "Uncaught TypeError: Cannot read properties of undefined (reading 'minimum_dify_version')", this issue might be related to how the minimum_dify_version is defined and used within the Dify codebase. The minimum_dify_version is used to check compatibility between the current Dify version and the plugin's requirements [2][3].

To resolve this issue, ensure that the plugin's metadata includes a valid minimum_dify_version. You might need to check the plugin's manifest or declaration to ensure this field is correctly defined. Additionally, verify that your Dify setup is correctly configured to handle this version check.

If the issue persists, consider reviewing the plugin's code or configuration for any missing or incorrect definitions related to minimum_dify_version.

To continue talking to Dosu, mention @dosu.


Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other

@dosubot[bot] commented on GitHub (Apr 20, 2025): <!-- Answer --> I found a similar discussion thread regarding a client-side exception error: [Application error: a client-side exception has occurred (see the browser console for more information)](https://github.com/langgenius/dify/discussions/14294). However, this thread is currently unsolved <sup>[[1]](https://github.com/langgenius/dify/discussions/14294)</sup>. Regarding the error you're encountering, "Uncaught TypeError: Cannot read properties of undefined (reading 'minimum_dify_version')", this issue might be related to how the `minimum_dify_version` is defined and used within the Dify codebase. The `minimum_dify_version` is used to check compatibility between the current Dify version and the plugin's requirements <sup>[[2]](https://github.com/langgenius/dify/blob/main/api/core/plugin/entities/plugin.py)</sup><sup>[[3]](https://github.com/langgenius/dify/blob/main/web/app/components/plugins/plugin-item/index.tsx)</sup>. To resolve this issue, ensure that the plugin's metadata includes a valid `minimum_dify_version`. You might need to check the plugin's manifest or declaration to ensure this field is correctly defined. Additionally, verify that your Dify setup is correctly configured to handle this version check. If the issue persists, consider reviewing the plugin's code or configuration for any missing or incorrect definitions related to `minimum_dify_version`. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/5f62168c-58ad-4533-af7d-c8bd14f6d12b?feedback_type=other)</sup>
Author
Owner

@mu-dan commented on GitHub (Apr 20, 2025):

Image
是在访问的时候报这种错误吗?
Is it to report this kind of error at the time of visiting?

自检

  • 这只是为了报告错误,如果你想提问,请前往 讨论区。[x] 我已搜索现有问题,搜索现有问题,包括已关闭的问题。[x] 我确认我使用英语提交此报告(我已阅读并同意 Language Policy)。[x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)[x] 请不要修改此模板:)并填写所有必填字段。

Dify 版本

1.2.0

云或自托管

自托管 (Docker)

重现步骤

无法打开 plugin_daemon

plugin_daemon:图片:langgenius/dify-plugin-daemon:0.0.7-local

未捕获的类型错误:无法读取未定义的属性(读取 'minimum_dify_version'),位于 page-ed41e9652d10a9ca.js:1:43125,lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573) at a9 (7aa3e4eb-df755cd629be1b60.js:1:63435) at a5 (7aa3e4eb-df755cd629be1b60.js:1:63052) at ov (7aa3e4eb-df755cd629be1b60.js:1:79228) at ic (7aa3e4eb-df755cd629be1b60.js:1:112360)在 7aa3e4eb-df755cd629be1b60.js:1:112205 在 IS (7aa3e4eb-df755cd629be1b60.js:1:112213) 在 u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) 在 iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) 在 iI (7aa3e4eb-df755cd629be1b60.js:1:129010) 在 iV (7aa3e4eb-df755cd629be1b60.js:1:129346) 在 7aa3e4eb-df755cd629be1b60.js:1:128638

✔️ 预期行为

无响应

实际行为

无响应

@mu-dan commented on GitHub (Apr 20, 2025): ![Image](https://github.com/user-attachments/assets/b9f6a44d-8c48-49ce-b43f-3ce52d406161) 是在访问的时候报这种错误吗? Is it to report this kind of error at the time of visiting? > ### 自检 > * [x] 这只是为了报告错误,如果你想提问,请前往 [讨论区](https://github.com/langgenius/dify/discussions/categories/general)。[x] 我已搜索现有问题,[搜索现有问题](https://github.com/langgenius/dify/issues),包括已关闭的问题。[x] 我确认我使用英语提交此报告(我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542))。[x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)[x] 请不要修改此模板:)并填写所有必填字段。 > > ### Dify 版本 > 1.2.0 > > ### 云或自托管 > 自托管 (Docker) > > ### 重现步骤 > 无法打开 plugin_daemon > > plugin_daemon:图片:langgenius/dify-plugin-daemon:0.0.7-local > > 未捕获的类型错误:无法读取未定义的属性(读取 'minimum_dify_version'),位于 page-ed41e9652d10a9ca.js:1:43125,lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573) at a9 (7aa3e4eb-df755cd629be1b60.js:1:63435) at a5 (7aa3e4eb-df755cd629be1b60.js:1:63052) at ov (7aa3e4eb-df755cd629be1b60.js:1:79228) at ic (7aa3e4eb-df755cd629be1b60.js:1:112360)在 7aa3e4eb-df755cd629be1b60.js:1:112205 在 IS (7aa3e4eb-df755cd629be1b60.js:1:112213) 在 u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) 在 iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) 在 iI (7aa3e4eb-df755cd629be1b60.js:1:129010) 在 iV (7aa3e4eb-df755cd629be1b60.js:1:129346) 在 7aa3e4eb-df755cd629be1b60.js:1:128638 > > ### ✔️ 预期行为 > _无响应_ > > ### ❌ 实际行为 > _无响应_
Author
Owner

@filwu8 commented on GitHub (Apr 21, 2025):

Image 是在访问的时候报这种错误吗? 是在访问的时候报这种错误吗?

自检

  • 这只是为了报告错误,如果您想提问,请前往讨论区。[x]我已搜索现有问题,搜索现有问题,包括已关闭的问题。[x]我确认我使用英语提交此报告(我已阅读并同意语言政策)。[x][对于中国用户]请务必使用中文提交问题,否则会被关闭。谢谢!:)[x]请不要修改此模板:)并填写所有必填字段。

版本更新

1.2.0

云或自托管

自托管(Docker)

重现步骤

无法打开 plugin_daemon
plugin_daemon:图片:langgenius/dify-plugin-daemon:0.0.7-local
未捕获的类型错误:无法读取未定义的属性(读取 'minimum_dify_version'),位于 page-ed41e96​​52d10a9ca.js:1:43125,lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573)在a9 (7aa3e4eb-df755cd629be1b60.js:1:63435)在a5 (7aa3e4eb-df755cd629be1b60.js:1:63052)在ov (7aa3e4eb-df755cd629be1b60.js:1:79228)在ic (7aa3e4eb-df755cd629be1b60.js:1:112360)在7aa3e4eb-df755cd629be1b60.js:1:112205 在IS (7aa3e4eb-df755cd629be1b60.js:1:112213) 在 u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) 在 iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) 在 iI (7aa3e4eb-df755cd629be1b60.js:1:129010) 在 iV (7aa3e4eb-df755cd629be1b60.js:1:129346) 在 7aa3e4eb-df755cd629be1b60.js:1:128638

✔️预期行为

无请求

实际行为

无请求

Image 是在访问的时候报这种错误吗? Is it to report this kind of error at the time of visiting?

自检

  • 这只是为了报告错误,如果你想提问,请前往 讨论区。[x] 我已搜索现有问题,搜索现有问题,包括已关闭的问题。[x] 我确认我使用英语提交此报告(我已阅读并同意 Language Policy)。[x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)[x] 请不要修改此模板:)并填写所有必填字段。

Dify 版本

1.2.0

云或自托管

自托管 (Docker)

重现步骤

无法打开 plugin_daemon
plugin_daemon:图片:langgenius/dify-plugin-daemon:0.0.7-local
未捕获的类型错误:无法读取未定义的属性(读取 'minimum_dify_version'),位于 page-ed41e9652d10a9ca.js:1:43125,lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573) at a9 (7aa3e4eb-df755cd629be1b60.js:1:63435) at a5 (7aa3e4eb-df755cd629be1b60.js:1:63052) at ov (7aa3e4eb-df755cd629be1b60.js:1:79228) at ic (7aa3e4eb-df755cd629be1b60.js:1:112360)在 7aa3e4eb-df755cd629be1b60.js:1:112205 在 IS (7aa3e4eb-df755cd629be1b60.js:1:112213) 在 u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) 在 iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) 在 iI (7aa3e4eb-df755cd629be1b60.js:1:129010) 在 iV (7aa3e4eb-df755cd629be1b60.js:1:129346) 在 7aa3e4eb-df755cd629be1b60.js:1:128638

✔️ 预期行为

无响应

实际行为

无响应

是的,我是打开插件菜单时候这样的报错。

@filwu8 commented on GitHub (Apr 21, 2025): > ![Image](https://github.com/user-attachments/assets/b9f6a44d-8c48-49ce-b43f-3ce52d406161) 是在访问的时候报这种错误吗? 是在访问的时候报这种错误吗? > > > ### 自检 > > > > > > * [x] 这只是为了报告错误,如果您想提问,请前往[讨论区](https://github.com/langgenius/dify/discussions/categories/general)。[x]我已搜索现有问题,[搜索现有问题](https://github.com/langgenius/dify/issues),包括已关闭的问题。[x]我确认我使用英语提交此报告(我已阅读并同意[语言政策](https://github.com/langgenius/dify/issues/1542))。[x][对于中国用户]请务必使用中文提交问题,否则会被关闭。谢谢!:)[x]请不要修改此模板:)并填写所有必填字段。 > > ### 版本更新 > > 1.2.0 > > ### 云或自托管 > > 自托管(Docker) > > ### 重现步骤 > > 无法打开 plugin_daemon > > plugin_daemon:图片:langgenius/dify-plugin-daemon:0.0.7-local > > 未捕获的类型错误:无法读取未定义的属性(读取 'minimum_dify_version'),位于 page-ed41e96​​52d10a9ca.js:1:43125,lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573)在a9 (7aa3e4eb-df755cd629be1b60.js:1:63435)在a5 (7aa3e4eb-df755cd629be1b60.js:1:63052)在ov (7aa3e4eb-df755cd629be1b60.js:1:79228)在ic (7aa3e4eb-df755cd629be1b60.js:1:112360)在7aa3e4eb-df755cd629be1b60.js:1:112205 在IS (7aa3e4eb-df755cd629be1b60.js:1:112213) 在 u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) 在 iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) 在 iI (7aa3e4eb-df755cd629be1b60.js:1:129010) 在 iV (7aa3e4eb-df755cd629be1b60.js:1:129346) 在 7aa3e4eb-df755cd629be1b60.js:1:128638 > > ### ✔️预期行为 > > _无请求_ > > ### ❌实际行为 > > _无请求_ > ![Image](https://github.com/user-attachments/assets/b9f6a44d-8c48-49ce-b43f-3ce52d406161) 是在访问的时候报这种错误吗? Is it to report this kind of error at the time of visiting? > > > ### 自检 > > > > > > * [x] 这只是为了报告错误,如果你想提问,请前往 [讨论区](https://github.com/langgenius/dify/discussions/categories/general)。[x] 我已搜索现有问题,[搜索现有问题](https://github.com/langgenius/dify/issues),包括已关闭的问题。[x] 我确认我使用英语提交此报告(我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542))。[x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)[x] 请不要修改此模板:)并填写所有必填字段。 > > ### Dify 版本 > > 1.2.0 > > ### 云或自托管 > > 自托管 (Docker) > > ### 重现步骤 > > 无法打开 plugin_daemon > > plugin_daemon:图片:langgenius/dify-plugin-daemon:0.0.7-local > > 未捕获的类型错误:无法读取未定义的属性(读取 'minimum_dify_version'),位于 page-ed41e9652d10a9ca.js:1:43125,lS (7aa3e4eb-df755cd629be1b60.js:1:39325) at ot (7aa3e4eb-df755cd629be1b60.js:1:64573) at a9 (7aa3e4eb-df755cd629be1b60.js:1:63435) at a5 (7aa3e4eb-df755cd629be1b60.js:1:63052) at ov (7aa3e4eb-df755cd629be1b60.js:1:79228) at ic (7aa3e4eb-df755cd629be1b60.js:1:112360)在 7aa3e4eb-df755cd629be1b60.js:1:112205 在 IS (7aa3e4eb-df755cd629be1b60.js:1:112213) 在 u9 (7aa3e4eb-df755cd629be1b60.js:1:109424) 在 iQ (7aa3e4eb-df755cd629be1b60.js:1:130771) 在 iI (7aa3e4eb-df755cd629be1b60.js:1:129010) 在 iV (7aa3e4eb-df755cd629be1b60.js:1:129346) 在 7aa3e4eb-df755cd629be1b60.js:1:128638 > > ### ✔️ 预期行为 > > _无响应_ > > ### ❌ 实际行为 > > _无响应_ 是的,我是打开插件菜单时候这样的报错。
Author
Owner

@mu-dan commented on GitHub (Apr 21, 2025):

eg浏览器吗,是eg浏览器的话,给自动翻译关掉就好了,翻译的问题(我有时候翻译打开就跟你的一样)
EG browser?,It's EG browser.,It's good to turn off automatic translation.,Translation problems (I sometimes open translations like yours)

@mu-dan commented on GitHub (Apr 21, 2025): eg浏览器吗,是eg浏览器的话,给自动翻译关掉就好了,翻译的问题(我有时候翻译打开就跟你的一样) EG browser?,It's EG browser.,It's good to turn off automatic translation.,Translation problems (I sometimes open translations like yours)
Author
Owner

@zhoulinwei commented on GitHub (Apr 21, 2025):

我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了?
I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?

@zhoulinwei commented on GitHub (Apr 21, 2025): 我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?
Author
Owner

@filwu8 commented on GitHub (Apr 21, 2025):

我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?

是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。

@filwu8 commented on GitHub (Apr 21, 2025): > 我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well? 是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。
Author
Owner

@filwu8 commented on GitHub (Apr 21, 2025):

eg浏览器吗,是eg浏览器的话,给自动翻译关掉就好了,翻译的问题(我有时候翻译打开就跟你的一样) EG browser?,It's EG browser.,It's good to turn off automatic translation.,Translation problems (I sometimes open translations like yours)

chrome浏览器,别的模块使用正常,只有这 插件模块打不开

@filwu8 commented on GitHub (Apr 21, 2025): > eg浏览器吗,是eg浏览器的话,给自动翻译关掉就好了,翻译的问题(我有时候翻译打开就跟你的一样) EG browser?,It's EG browser.,It's good to turn off automatic translation.,Translation problems (I sometimes open translations like yours) chrome浏览器,别的模块使用正常,只有这 插件模块打不开
Author
Owner

@zhoulinwei commented on GitHub (Apr 21, 2025):

我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?

是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。

非常有可能是我们打包的时候出了问题,因为我只换了web的镜像变成官方的镜像就恢复正常了
It's highly likely that there was a problem during our packaging process. Because I only replaced the web image with the official one, and then everything returned to normal.

@zhoulinwei commented on GitHub (Apr 21, 2025): > > 我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well? > > 是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。 非常有可能是我们打包的时候出了问题,因为我只换了web的镜像变成官方的镜像就恢复正常了 It's highly likely that there was a problem during our packaging process. Because I only replaced the web image with the official one, and then everything returned to normal.
Author
Owner

@filwu8 commented on GitHub (Apr 21, 2025):

我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?

是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。

非常有可能是我们打包的时候出了问题,因为我只换了web的镜像变成官方的镜像就恢复正常了 It's highly likely that there was a problem during our packaging process. Because I only replaced the web image with the official one, and then everything returned to normal.

你使用最新的代码打包的吗?官方的那个镜像打包的时间,和最新的代码之间有没有后提交?很有可能这个中间的提交里面的bug

@filwu8 commented on GitHub (Apr 21, 2025): > > > 我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well? > > > > > > 是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。 > > 非常有可能是我们打包的时候出了问题,因为我只换了web的镜像变成官方的镜像就恢复正常了 It's highly likely that there was a problem during our packaging process. Because I only replaced the web image with the official one, and then everything returned to normal. 你使用最新的代码打包的吗?官方的那个镜像打包的时间,和最新的代码之间有没有后提交?很有可能这个中间的提交里面的bug
Author
Owner

@hoojunev commented on GitHub (Apr 21, 2025):

same issue

@hoojunev commented on GitHub (Apr 21, 2025): same issue
Author
Owner

@lelelelelez commented on GitHub (Apr 30, 2025):

我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?

是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。

请问是删的哪个库?重装了什么?@filwu8

@lelelelelez commented on GitHub (Apr 30, 2025): > > 我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well? > > 是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。 请问是删的哪个库?重装了什么?@filwu8
Author
Owner

@filwu8 commented on GitHub (Apr 30, 2025):

我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well?

是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。

请问是删的哪个库?重装了什么?@filwu8

导出所有dsl,然后重新部署了

@filwu8 commented on GitHub (Apr 30, 2025): > > > 我出现了和你一摸一样的问题,以前的版本也是在插件这块出问题,重新弄了1.2的版本,还是在插件这块出的这个问题,你是不是前端也重新打包过了? I'm having exactly the same problem as you. The previous version also had issues with the plugins. I reinstalled version 1.2, but I'm still encountering this problem with the plugins. Did you repackage the front web as well? > > > > > > 是的,重新打包了,太折腾了,我今天删库重装了。恢复正常。 > > 请问是删的哪个库?重装了什么?[@filwu8](https://github.com/filwu8) 导出所有dsl,然后重新部署了
Author
Owner

@lelelelelez commented on GitHub (May 1, 2025):

In Dify version 1.2.0, the PluginDeclaration lacks the meta field. This issue has been resolved in version 1.3.0.
If you do not wish to upgrade, you can manually add the meta field to the PluginDeclaration

@lelelelelez commented on GitHub (May 1, 2025): In Dify version 1.2.0, the `PluginDeclaration` lacks the `meta` field. This issue has been resolved in version 1.3.0. If you do not wish to upgrade, you can manually add the `meta` field to the `PluginDeclaration`
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#13145