画像をアップロードするオプションを備えた CKEDITOR があり、エディターに YouTube ビデオを追加するための mediaembed を追加したいと考えています。
私は行を追加しました:config.extraPlugins = 'MediaEmbed';
しかし、何も起こりません。mediaembed の新しいボタンはありません。
次の config.js があります。
CKEDITOR.editorConfig = function( config )
{
config.filebrowserImageBrowseUrl = "ckeditor/ImageBrowser.aspx";
config.filebrowserImageWindowWidth = 780;
config.filebrowserImageWindowHeight = 720;
config.filebrowserBrowseUrl = "ckeditor/LinkBrowser.aspx";
config.filebrowserWindowWidth = 500;
config.filebrowserWindowHeight = 650;
config.htmlEncodeOutput = true;
config.extraPlugins = 'MediaEmbed';
};
mediaembed フォルダーは ~/ckedtior/plugins/ にあります。
どこが間違っていますか?mediaembed のボタンが表示されません。