five
five

Reputation: 367

Is TinyMCE free to use?

I'm not sure I understand it correctly, but I believe that there is a "basic" version that is free of charge, you only have to pay if you want some premium plugins and technical support.

Is this how the situation truly is?

Upvotes: 31

Views: 29224

Answers (3)

BDave
BDave

Reputation: 49

As of April 2024, no. Load it more than 1000 times in a month and it's locked. You need to pay at least $40 a month from then on. https://www.tiny.cloud/pricing/

Upvotes: 4

Ahmad Mohammadi
Ahmad Mohammadi

Reputation: 1

use this bellow init to have menu bar and toolbar for free without any problem

 tinymce.init({
  selector: 'textarea',
  min_height: 350,
   skin: "oxide",
   icons: 'material' ,
 preview_styles: 'font-size color',
  resize: 'both',
  plugins: 'link image media code autolink lists media table',
  toolbar: 'undo redo | styleselect| forecolor  | bold italic | alignleft aligncenter alignright alignjustify | outdent indent | link image media| code table',
  toolbar_mode: 'floating',
   /* enable title field in the Image dialog*/
  image_title: true,
  /* enable automatic uploads of images represented by blob or data URIs*/automatic_uploads: true,images_upload_url: 'postAcceptor.php',file_picker_types: 'image',

  tinycomments_mode: 'embedded',
  tinycomments_author: 'Author name'
  
});

Upvotes: -2

rjdkolb
rjdkolb

Reputation: 11828

yes.

Please see this link and this link for more information.

Anyone that wants to use TinyMCE in their commercial application or website are free to do so.

On top of this,the code is licensed under LGPL, so you may fork the code. Just remember to contribute your changes where other people can see it.(fork on github for example)

If you want support or want to contribute to the development, you are welcome to buy support or get addition plugins with the enterprise version. But only if you want.

Related.

EDIT: If you use a tool like Webpack, remember that the TinyMCE files should not be bundled and minified with the rest of your application. It should be a seperate Java Script and resource files. TinyMCE even has it's own CDN to help you with this.

"It should also be possible to exchange that dynamically linked library for an independently compiled build"

Upvotes: 33

Related Questions