0

私は TinyMCE エディターを PHP で 3 か月以上使用しています。

当初から、エディタは Firefox 以外のブラウザにはロードされていません。

Firefox でも、キャッシュがない場合、エディターはロードされません。遅い Firefox でもエディタの問題が発生しています。

クロムで発生するエラーは次のとおりです。

"Uncaught Exception : tinymce is not defined"

したがって、オブジェクトが作成されていないと想定しています。ただし、オブジェクトが作成されることがありますが、それでもエディターでうまくいかないため、表示できません。

どんな提案でも大歓迎です。

私が使用している初期化スクリプトは次のとおりです。

tinyMCE.init({

        mode: "exact",
        elements: "editor",
        readonly: true,
        theme: "advanced",
        skin: "o2k7",
        plugins: "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups," + "insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable," + "visualchars,nonbreaking,xhtmlxtras,template,advlist,spellchecker",
        languages : "en",
        // Theme options - button# indicated the row# only
        theme_advanced_buttons1: "template,|,newdocument,|,bold,italic,underline,strikethrough," + "|,justifyleft,justifycenter,justifyright,justifyfull," + /*styleselect,*/
        "formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2: "pastetext,pasteword,|,search,replace,|,bullist,numlist,|," + "outdent,indent,blockquote,|,undo,redo," /*"|,link,unlink,anchor,image,cleanup,|"*/+
        ",insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,ltr,rtl,|,spellchecker,fullscreen",
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_statusbar_location: "bottom",
        theme_advanced_resizing: true,
        spellchecker_languages : "+English=en",
        //spellchecker_enable_learn_rpc: true,
        // Example content CSS (should be your site CSS)
        content_css: "../js/lib/tinymce/content.css",

        // Theme options - button# indicated the row# only
        theme_advanced_buttons1: "template,|,newdocument,|,bold,italic,underline,strikethrough," + "|,justifyleft,justifycenter,justifyright,justifyfull," + /*styleselect,*/
        "formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2: "pastetext,pasteword,|,search,replace,|,bullist,numlist,|,"+ "outdent,indent,blockquote,|,undo,redo," /*"|,link,unlink,anchor,image,cleanup,|"*/+
        ",insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,ltr,rtl,|,spellchecker,fullscreen",
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_statusbar_location: "bottom",
        theme_advanced_resizing: true,
        // Example content CSS (should be your site CSS)
        content_css: "../js/lib/tinymce/content.css",

        // Drop lists for link/image/media/template dialogs
        template_external_list_url: "lists/template_list.js",
        external_link_list_url: "lists/link_list.js",
        external_image_list_url: "lists/image_list.js",
        media_external_list_url: "lists/media_list.js",
        // template url
        template_external_list_url: "../../dynamic/templates.php?q=list",
        // on init
        oninit: onEditorLoaded
    });

ええ、私はtiny_mce_gzip.phpを使用してエディターをロードしています

4

0 に答える 0