我的網站是kcfinder和CKEditor的一個笨,我的問題是,當我嘗試上傳和加載圖像,該圖像上傳正確在自動創建的文件夾/assets/kcfinder/.thumbs/images/ ,但是當我從服務器中選擇圖像時,URL是錯誤的,我看不到它。我如何設置正確的路徑?Kcfinder上傳圖像問題
0
A
回答
0
我已經解決了這個問題。 在../assets/kcfinder/config.php我改變:
「的uploadURL」從「上傳」到絕對URL和 「uploadDir」從「」到「上傳」和它的工作!
無論如何。
0
我的事情,問題是,你需要添加基本URL在你的圖像路徑
BASE_URL()。 '圖片/' 。 $ IMG;
0
您還可以使用下面的代碼來設置KcFinder配置設置:
<?php
/**
* KcFinder has a SESSION key name 'KCFINDER'
* You can use this as setup your dynamic config vales
* if you set uploadURL and uploadDir via SESSION, KcFinder ignore config.php
* to get these values and it start using SESSION values
*/
$_SESSION['KCFINDER'] = array(
'disabled' => false,
'uploadURL' => 'http://www.example.com/upload',
'uploadDir' => 'var/htdocs/www/upload'
);
更多:See Link
相關問題
- 1. KCFinder圖像上傳
- 2. 圖像上傳PHP問題
- 3. 上傳圖像PHP問題
- 4. PHP圖像上傳問題
- 5. JQUERY圖像上傳問題
- 6. PHP PNG圖像上載與KCFINDER 3.12
- 7. KCFinder - 將圖像上傳到另一臺服務器
- 8. Yii2 KCFinder:如何將圖像上傳到「Common」或「Frontend」目錄
- 9. 上傳分塊圖像文件問題
- 10. 與前端圖像上傳問題
- 11. 圖像上傳 - 安全問題
- 12. codeigniter中的圖像上傳問題2.1.0
- 13. 文件或圖像上傳php問題
- 14. Yii2上傳圖像模式問題
- 15. 上傳圖像問題在Xcode和ios
- 16. 將圖像上傳到臉書問題
- 17. django PIL圖像上傳/顯示問題
- 18. 上傳圖像到amazonS3問題Froala
- 19. Android的圖像上傳問題
- 20. IOS AWS s3桶圖像上傳問題
- 21. 圖像上傳到FTP問題
- 22. Silverlight 4圖像上傳問題
- 23. CKEditor拖放圖像上傳問題
- 24. drag'n'drop上傳圖像 - 支持API問題
- 25. PHP圖像上傳腳本問題
- 26. 圖像上傳到SQL的問題
- 27. 圖像上傳與php codeigniter問題
- 28. 圖像上傳在Asp.net中的圖像文件夾問題
- 29. TransloadIt圖像上傳問題,當圖像尺寸太小,在IOS
- 30. 上傳圖像後顯示圖像質量問題
你如何從服務器挑選的形象呢?我建議你編輯你的問題! – Vickel
嗨Vickel,我從服務器中點擊「顯示服務器」按鈕來選擇圖像。圖像在那裏,但我選擇它,它無法正確加載。圖片不顯示,我認爲是一個路徑問題。 – Nando