question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Trying to load TinyMCE as a standalone (non-cloud) free installation but still get the This domain is not registered message

See original GitHub issue

I have wrapped the call to the tinyMCE inside another VUE component (warapper) called Wysiwyg as below:

   import editor from '@tinymce/tinymce-vue';

    export default {

        name: 'Wysiwyg',

        components: { editor },

    }

This works but show the dreaded message: This domain is not registered with TinyMCE Cloud. Start a free trial to discover our premium cloud services and pro support.

I don’t want to use cloud but want to run the tinyMCE as a standalone editor for my project.

What should I do?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:19 (4 by maintainers)

github_iconTop GitHub Comments

10reactions
Mintonnecommented, May 29, 2019

Just a heads up. You don’t have to copy the skins and themes to the public folder

import editor from '@tinymce/tinymce-vue'

import 'tinymce/tinymce'

// Theme
import 'tinymce/themes/silver/theme'

// Skins
import 'tinymce/skins/ui/oxide/skin.min.css'
import 'tinymce/skins/ui/oxide/content.min.css'
import 'tinymce/skins/content/default/content.min.css'

// Plugins
import 'tinymce/plugins/fullscreen'
import 'tinymce/plugins/paste'
import 'tinymce/plugins/autoresize'
Read more comments on GitHub >

github_iconTop Results From Across the Web

Remove warning - This domain is not registered with Tiny Cloud
How to remove the TinyMCE warning notification - This domain is not registered with Tiny Cloud - associated with the Cloud API key....
Read more >
How to fix TinyMCE 'Domain not registered' message in an ...
The problem is, the editor shows that "domain not registered" message. My api key is correct. I have to hide the message via...
Read more >
Post will not publish – tinyMCE error - WordPress.org
I have installed the free version of the plugin and configured it. Nothing happens when I post from the form (i.e., no response,...
Read more >
Dissecting the WordPress TinyMCE Editor - Kinsta
Develop custom WordPress TinyMCE plugins; Use a free WordPress plugin to add styles and buttons to TinyMCE. WordPress TinyMCE TinyMCE is a ...
Read more >
TinyMCE error - ACF Support
I just tested this on a site with only ACF and WP, I tested with both ACF4 and ACF5. I'm not getting this...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found