tmyonline Posted May 9, 2008 Share Posted May 9, 2008 Hi guys: I have a question on how to integrate the FCKeditor to my PHP page. I downloaded the latest release and integrated it to my PHP page inside a form. While doing this, I followed the instruction very closely. I think their instruction is straightforward and simple but I have a feeling that the FCKeditor development team missed something in their instruction. Anyway, this is the error message I received: Not Found The requested URL /fckeditor/editor/fckeditor.html was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. Any ideas ? Thanks a lot! Quote Link to comment Share on other sites More sharing options...
ravi181229 Posted May 14, 2008 Share Posted May 14, 2008 hi try this: check the BaePath. It was '/fckeditor/'. <?php include_once("fckeditor/fckeditor.php") ; $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = 'fckeditor/' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.