Sử dụng free FCKeditor file manager cho trang web của bạn
Khi làm dự án Vitic, với hạn chế về thời gian, mình đã tìm nhiều giải pháp cho file manager để quản lý image, từ CKFinder, MCFileManager .v.v. và những cái này đều có một điểm chung là không hề miễn phí (không nói đến chuyện patch để dẹp cái notice demo của tụi nó nhé :D), còn iBrowser của TinyMCE thì không đủ thời gian để làm nó có thể work standalone chợt nhớ đến cái FCKeditor cũng có một cái file manager, không hề kém cạnh những cái vừa kể trên mà lại miễn phí :P
Nếu ai đã từng sử dụng FCKeditor thì chắc sẽ biết đến phần filemanager của nó (dùng để upload image, file, flash .v.v.) rất tiện dụng (mình thích FCKeditor nên thường sử dụng bộ editor này cho những dự án mình làm hơn là dùng TinyMCE :P), ở đây, giả sử là mọi người đã biết cách config để FCKeditor có thể hoạt động tốt (eg: upload image .v.v.). Nếu ai chưa biết thì có thể tham khảo tại đây.
Để có thể làm cho file manager của FCKeditor (bạn có thể down bộ FCKeditor ở link trên) có thể hoạt động standalone, bạn chỉ cần dùng code sau :
<input type="text" id="image" />
<input type="button" id="btnbrowserver" value="Browse Server" />
<script>
var browser = function(){
window.SetUrl=function(value){
document.getElementById('image').value=value;
}
var filemanager='/demos/FCKeditor/editor/filemanager/browser/default/browser.html';
var connector='../../connectors/php/connector.php';
window.open(filemanager+'?Connector='+connector+'&Type=Image','fileupload','modal,width=600,height=400');
document.getElementById('btnbrowserver').onclick=browser;
}
</script>
Đây giả sử bạn lưu thư mục FCKeditor tại demos/FCKeditor nhé :D
Tags: CKFinder, FCKeditor, file manager, Javascript, standalone, TinyMCE
Previous Article

Share your views...
3 Respones to "Sử dụng free FCKeditor file manager cho trang web của bạn"
I really like your post. Does it copyright protected?
lúc 12:55 15 tháng 6, 2009
Hi. I like the way you write. Will you post some more articles?
lúc 18:14 16 tháng 6, 2009
No, it doesn't. Use it as you want :D but when you want to re-post this, please give the name of the author :P thanks.
lúc 07:11 19 tháng 6, 2009
Đăng nhận xét