(New page: {{CKFinder FCKeditor Integration}}) |
m (moved CKFinder/Developers Guide/PHP/FCKeditor Integration to CKFinder 1.x/Developers Guide/PHP/FCKeditor Integration) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
− | {{CKFinder FCKeditor Integration}} | + | {{CKFinder FCKeditor Integration|ext=php}} |
Latest revision as of 07:46, 28 May 2010
CKFinder comes with built it APIs to easily integrate it with FCKeditor. Check the "_samples" folder for specific examples of it.
To instead configure FCKeditor manually to use CKFinder, just edit the fckconfig.js file in the FCKeditor directory and modify the following settings:
FCKConfig.LinkBrowserURL = '/ckfinder/ckfinder.html' ; FCKConfig.ImageBrowserURL = '/ckfinder/ckfinder.html?type=Images' ; FCKConfig.FlashBrowserURL = '/ckfinder/ckfinder.html?type=Flash' ; FCKConfig.LinkUploadURL = '/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files' ; FCKConfig.ImageUploadURL = '/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images' ; FCKConfig.FlashUploadURL = '/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash' ;
Just change "/ckfinder/" in the above URLs if you have CKFinder installed in a different place.