1

I have Symfony2 project with TinyMCE Bundle installed. When I tried to install justboil.me image uploader (http://justboil.me/) the plugin doesn't show in TinyMCE, I don't get any errors, everything else is working. Here's my config

stfalcon_tinymce:
    tinymce_jquery: false # set to TRUE after fixing the issue with loading queue
    language: %locale%
    external_plugins:
            justboil:
                url: "asset[/js/tinymce-plugins/justboil/editor_plugin.js]"
    theme:
        simple: 
            plugins:
                - "justboil advlist autolink lists link image charmap print preview hr anchor pagebreak"
                - "searchreplace wordcount visualblocks visualchars code fullscreen"
                - "insertdatetime media nonbreaking save table contextmenu directionality"
                - "emoticons template paste textcolor"
            toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image justboil"
            toolbar2: "print preview media | forecolor backcolor emoticons | stfalcon | example"
            image_advtab: true
        advanced:
            plugins:
                - "advlist autolink lists link image charmap print preview hr anchor pagebreak"
                - "searchreplace wordcount visualblocks visualchars code fullscreen"
                - "insertdatetime media nonbreaking save table contextmenu directionality"
                - "emoticons template paste textcolor"
            toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
            toolbar2: "print preview media | forecolor backcolor emoticons | stfalcon | example"
            image_advtab: true
        bbcode:
            toolbar1: "bold,italic,underline,undo,redo,link,unlink,removeformat,cleanup,code,preview"

What am I doing wrong? It's the first time I user TinyMCE Bundle and justboil.me.

JayKey
  • 177
  • 1
  • 16

1 Answers1

2

you need to copy your justboil.me plugin to tinymce plugins folder.
rename justboil folder to jbimages

here is example how to include plugin and configure button in toolbar plugins : "preview,jbimages", toolbar: "jbimages | bold italic underline | fontsizeselect",

hope this helps you

R A
  • 827
  • 13
  • 25