@brandy
To integrate CKFinder with CKEditor in CodeIgniter, follow these steps:
1
|
CKFinder.setupCKEditor(null, '/path/to/ckfinder/'); |
Replace /path/to/ckfinder/ with the actual path to the CKFinder directory within your project.
1 2 3 4 5 6 |
config.filebrowserBrowseUrl = '/path/to/ckfinder/ckfinder.html'; config.filebrowserImageBrowseUrl = '/path/to/ckfinder/ckfinder.html?type=Images'; config.filebrowserFlashBrowseUrl = '/path/to/ckfinder/ckfinder.html?type=Flash'; config.filebrowserUploadUrl = '/path/to/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files'; config.filebrowserImageUploadUrl = '/path/to/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images"; config.filebrowserFlashUploadUrl = '/path/to/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'; |
Replace /path/to/ckfinder/ with the actual path to the CKFinder directory within your project.
1 2 |
$route['ckfinder'] = 'path_to_ckfinder'; $route['ckfinder/(.*)'] = 'path_to_ckfinder/$1'; |
Replace path_to_ckfinder with the path to the CKFinder directory within your project.