In the Tools>Extensions I have set Tiny Mce ver to 6, but it is ver 8 that is installed and there it tells me it is disabled because it need a license key (which should not be necessary in ver 6) Any suggestions ??
If you set to v6, only v6 will be installed. Double check your composer.json in the project folder, make sure it contains "tinymce/tinymce": ^6.8.6", not v8. Also make sure you did not install other versions, for example, by npm package or other extensions, yourself.
Double check your project file, open it in a text editor, search "@phpmaker/tinymce", you should find {"Id":"Version","Type":"string","Value":"6"} if you did set it to v6.
If you set to v8 before, clean it first, delete:
- "vendor" folder
- "tinymce" folder (assume you use v2026)
- composer.json
in your project folder, and generate all scripts again.
Thanks for the answer - but it is nor working.
Generating a whole new project from scratch I get this error during generation:
Problem 1
- Root composer.json requires tinymce/tinymce ^6.8.6, found tinymce/tinymce\[6.8.6\] but these were not loaded, because they are affected by security advisories ("\]8;;https://github.com/advisories/GHSA-vg35-5wq7-3x7w\PKSA-k4d6-bt7k-7ddp\]8;;", "\]8;;https://github.com/advisories/GHSA-v98h-vmpc-fpqv\PKSA-2v47-9p8y-4qt3\]8;;", "\]8;;https://github.com/advisories/GHSA-q742-qvgc-gc2f\PKSA-rf1b-835f-6yyv\]8;;", "\]8;;https://github.com/advisories/GHSA-mh5m-5hw4-5c69\PKSA-fp8q-vmhs-msy9\]8;;", "\]8;;https://github.com/advisories/GHSA-5359-pvf2-pw78\PKSA-hdg2-6rxt-d4qn\]8;;"). Go to https://packagist.org/security-advisories/ to find advisory details. To ignore the advisories, add their IDs to the "policy.advisories.ignore-id" config or add the package to "policy.advisories.ignore". To turn the feature off entirely, you can set "policy.advisories.block" to false.
"tinymce/tinymce": ^6.8.6" is OK
{"Id":"Version","Type":"string","Value":"6"} is OK
I did not think that v6 needed license....
The message is not about license, you may read TinyMCE 6 vulnerability.
Thank you - switching to v7 did the trick...