1

新しい画像をサーバーにアップロードするための作業スクリプトが既にあり、INSERT > IMAGE > UPLOAD からアクセスします。

ただし、すでにアップロードした画像を使用する必要がある場合があるため、サーバー上の選択したディレクトリ (ユーザーの hdd ではない) を参照して画像をアップロードし、選択できるようにする file_picker_callback() スクリプトを探しています。私は望む。

それを行うスクリプトを見つけられなかったので、誰かが無料で使用できるものを教えてくれることを望んでいました.

私は次のようにロードします:

<script>
    tinymce.init({
        selector: "#mytextarea",
        language: "en",
        plugins: "wordcount autolink link preview charmap directionality fullscreen emoticons media paste save spellchecker table searchreplace visualblocks quickbars image imagetool moxiemanager",
        menubar: "file edit view insert format table tools",

        image_advtab: true,
        paste_data_images: true,

        default_link_target: "_blank",
        automatic_uploads: true,
        file_picker_types: 'image',

        relative_urls: false,
        remove_script_host: false,
        document_base_url: "http://www.somehost.com/",
        images_upload_url: '../uploadChecker.php',
        images_upload_credentials: true,

        file_picker_callback: function(callback, value, meta) {
        },
    });
</script>
4

0 に答える 0