我正在使用CKEditor(3.62),同時上傳圖片圖片按鈕圖片未加載到CKEditor中。如何解決這個問題呢。?在CKEditor中,無法上傳圖像。
1
A
回答
1
我在ckeditor中集成了ckfinder。而我上傳的圖像獲取腳本錯誤,即在ckfinder.html。我不知道如何在ckeditor中設置ckfinder。如何解決問題。
1
有可能是在給一些路徑問題。 請嘗試執行以下步驟。
1.下載CKEditor和CKFinder。集成代碼可能在http://dwij.co.in/ckeditor-ckfinder-integration-using-php/
上2.將提取的代碼都放在xampp中的一個文件夾中,如下所示。 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 |_integrated |_ckeditor | |_config.js | |_... |_ckfinder | |_config.php | |_... |_uploads |_index.html
現在打開文件的config.php內ckfinder &補充以下變化:
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 ;
- 現在打開url
http://localhost/integrated/
並嘗試上傳圖片。
相關問題
- 1. CKEditor免費圖像上傳
- 2. 上傳圖像擲CKEditor的
- 3. Rails 3.1:無法在ckeditor中上傳
- 4. CKEDITOR,圖像上傳在jsp頁面
- 5. 我有在Django的CKEDITOR圖像上傳
- 6. 無法上傳大圖像
- 7. 無法上傳圖像android
- 8. 如何在使用CKEditor CDN時從桌面上上傳CKEditor中的圖像?
- 9. Django 1.6和ckeditor上傳圖像
- 10. CKEditor拖放圖像上傳問題
- 11. ckeditor上傳圖片
- 12. 無法在Laravel 5.2中使用干預圖像上傳圖像
- 13. 如何在ckeditor中上傳圖片後加密ckeditor圖片上傳url
- 14. 無法從CKEditor中的計算機上傳圖片
- 15. Rails 3.1和CKEditor w Carrierwave,無法上傳
- 16. CKEditor - 無需上傳到服務器的圖像預覽
- 17. 無法上傳Laravel上的圖像
- 18. 我在ckeditor中插入圖片並從fckeditor上傳時無法在電子郵件中看到圖像
- 19. 無法從圖庫上傳圖像
- 20. 使用Ckeditor或tiny mce在asp.net中用html上傳圖像
- 21. django-ckeditor圖像上傳給圖像的錯誤地址
- 22. 警告:無法驗證CSRF與CKEditor的圖像標記真實性上傳
- 23. 在CKEditor中上傳回調
- 24. 無法自制CKEditor文件上傳器在web2py中工作
- 25. ckeditor - mediaEmbed上傳圖片
- 26. CKEditor圖片上傳問題
- 27. ckeditor上傳圖片按鈕
- 28. 無法使用PostFile上傳圖像
- 29. 無法使用codeigniter上傳圖像
- 30. 無法將圖像上傳至臉書
你有權限將圖像保存在服務器上嗎?如果上傳對話框出現,並且上傳開始,但是沒有插入圖像,比保存在服務器上時可能出現的錯誤 – philipp
我的問題從我上傳對話框中單擊「瀏覽服務器」時出現語法錯誤。不允許上傳圖像.. – ELAYARAJA
好的。但是如果你真的在尋找幫助,你應該發佈代碼,錯誤日誌,只是上面的兩行。 – philipp