4

elfinder.org の指示に従って CKEditor を elFinder に統合する方法を試してみましたが、うまくいきません。elFinder と統合された CKEditor の例はありますか?誰かが知っている場合は、共有してください。

ありがとう

4

2 に答える 2

1

ここで CKEditor と elFinder の例を見つけました: http://elrte.org/redmine/attachments/409/elfinder.html

$().ready(function() {

   var funcNum = window.location.search.replace(/^.*CKEditorFuncNum=(\d+).*$/, "$1");
   var langCode = window.location.search.replace(/^.*langCode=([a-z]{2}).*$/, "$1");

   $('#finder').elfinder({
      url : 'connectors/php/connector.php',
      lang : langCode,
      editorCallback : function(url) {
         window.opener.CKEDITOR.tools.callFunction(funcNum, url);
         window.close();
      }
   })

})
于 2013-05-28T13:21:13.200 に答える
-4

これは、CKFinder を使用している場合に役立ちます。次の手順を試してください。

1. CKEditor と CKFinder をダウンロードします。統合されたコードは、http://dwij.co.in/ckeditor-ckfinder-integration-using-php/
で入手できる場合があります 。 2. 以下のように、抽出した両方のコードを xampp 内の 1 つのフォルダーに配置します。3. 以下のコードでエディターを含むインデックス ファイル (index.html) を作成します。

    <html>
    <head>
    <script type="text/javascript" src="ckeditor/ckeditor.js"></script>
    <script type="text/javascript" src="ckfinder/ckfinder.js"></script>
    </head>
    <body>
        <h1>CKEditor CKFinder Integration using PHP</h1>
        <textarea id="editor1" name="editor1" rows="10" cols="80"></textarea>
    <script type="text/javascript">
    var editor = CKEDITOR.replace( 'editor1', {
        filebrowserBrowseUrl : 'ckfinder/ckfinder.html',
        filebrowserImageBrowseUrl : 'ckfinder/ckfinder.html?type=Images',
        filebrowserFlashBrowseUrl : 'ckfinder/ckfinder.html?type=Flash',
        filebrowserUploadUrl : 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
        filebrowserImageUploadUrl : 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
        filebrowserFlashUploadUrl : 'ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'
    });
    CKFinder.setupCKEditor( editor, '../' );
    </script>
    </body>
    </html>

したがって、フォルダー構造は次のようになります。

htdocs
|_統合
    |_ckeditor
    | | |_config.js
    | | |_...
    |_ckfinder
    | | |_config.php
    | | |_...
    |_アップロード
    |_index.html
  1. ckfinder 内で config.php ファイルを開き、次の変更を行います。

    function CheckAuthentication() {
        // WARNING : DO NOT simply return "true". By doing so, you are allowing
        // "anyone" to upload and list the files in your server. You must implement
        // some kind of session validation here. Even something very simple as...
        // return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized'];
        return true; // not good option though; go for sessions
    }
    $baseUrl = 'http://localhost/integrated/uploads/';
    $enabled = true;
    $config['SecureImageUploads'] = false;
    $config['ChmodFolders'] = 0777 ;
    
  2. URLhttp://localhost/integrated/を開いて画像をアップロードしてみてください。
于 2013-05-30T09:15:17.617 に答える