stfalcon / TinymceBundle

Bundle for connecting TinyMCE (WYSIWYG editor) to your Symfony2 project
259 stars 154 forks source link

Config working using app_dev.php but not using app.php #216

Open mcaquet opened 7 years ago

mcaquet commented 7 years ago

I have the following config in my app/config/config.yml file

stfalcon_tinymce:
    theme:
        simple:
            plugins: "link image"
            height : "480"

The tinymce editor is picking up this config fine when I use app_dev.php, but as soon as I use app.php, it's no longer working: I get the default simple theme config

nykopol commented 7 years ago

hello @matdev it look like you forgot to clear the production cache with php bin/console cache:clear --env=prod

mcaquet commented 7 years ago

That was it ! Thanks very much @nykopol