Problem with fck editor?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
RishikeshJha
Forum Newbie
Posts: 11
Joined: Tue Mar 31, 2009 1:54 am

Problem with fck editor?

Post by RishikeshJha »

Hi,

i m using fck editor in php. but i m getting "The webpage cannot be found".

here is the php code:

Code: Select all

 
<?php    
include_once("fckeditor/fckeditor.php") ;
 
    $oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->Value = 'rishikesh' ;
$oFCKeditor->Create() ;
?>
 
can anyone help me.

Thanks in advance
Last edited by Benjamin on Fri May 08, 2009 9:44 am, edited 1 time in total.
Reason: Added [code=php] tags.
User avatar
pickle
Briney Mod
Posts: 6445
Joined: Mon Jan 19, 2004 6:11 pm
Location: 53.01N x 112.48W
Contact:

Re: Problem with fck editor?

Post by pickle »

A 404 error has nothing to do with FCKEditor. The URL you're trying to access doesn't exist.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Post Reply