admin管理员组文章数量:1390564
I'm using TinyMCE 7.7.1 in a .NET 8 MVC application, downloading the component from NuGet. Therefore, I'm using the self-hosted version, which doesn't require a commercial license, as explained at /get-tiny/
However, when using this control, I see an "upgrade" button, as if the license wasn't configured correctly. This happens whether I'm using the GPL license, using my API Key (obtained after registration), or even deleting the license_key attribute from the initialization.
TinyMCE UI with Upgrade button
My code is basic:
tinymce.init({
selector: "#maileditor",
license_key: 'gpl',
language: "es",
height: 600,
plugins: "lists link image searchreplace visualblocks wordcount help ",
toolbar: "undo redo | bold italic underline forecolor | align lineheight | numlist bullist outdent indent | link image | removeformat",
});
On the other hand, if instead of using the self-hosted code I use the Cloud version, everything works correctly (but I prefer the self-hosted version).
For the self-hosted version, I use:
<script src="/lib/tinymce/tinymce.min.js" referrerpolicy="origin"></script>
For the Cloud version, I use:
<script src="/1/[My API Key here]/tinymce/7.1.2/tinymce.min.js" referrerpolicy="origin"></script>
Any ideas on how to fix this?
Thank you very much, best regards.
I've tried setting the GPL license to use, or the personal license I received after registration; but neither has worked.
本文标签: nugetIssue with the selfhosted version of TinyMCEStack Overflow
版权声明:本文标题:nuget - Issue with the self-hosted version of TinyMCE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744705460a2620816.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论