Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
Javascript->codeBlock($code); } } ?>
  • 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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.