After integrating creditor in cakephp, I got a error like this
Fatal Error
Error: Call to a member function link() on a non-object File: /var/www/blogs/app/View/Blogs/add.ctp Line: 1
Below is what I have done:
- put ckeditor in /app/webroot/js
- Add helper class /aap/view/helper/FckHelper.php
To call CKEditor in a View put this into add.ctp like
link('ckeditor/ckeditor', NULL, false); echo $fck->load('Blog.comments'); ?>In controller, public $helpers = array('Html', 'Js' => array('Javascript','Jquery'), 'Fck');
The error is happen at the below line echo $javascript->link('ckeditor/ckeditor', NULL, false);
How to fix this?