KORPZ Posted May 31, 2007 Share Posted May 31, 2007 Hi there Are there any FCKeditor gurus out there because im having problems. I simply want to have two FCKeditor instances on one page. Has anyone had this problem? Quote Link to comment https://forums.phpfreaks.com/topic/53722-fckeditor/ Share on other sites More sharing options...
taith Posted May 31, 2007 Share Posted May 31, 2007 lol... cant say i've ever really liked that editor... i use tinymce... autoadapts to any/all textarea's on a page Quote Link to comment https://forums.phpfreaks.com/topic/53722-fckeditor/#findComment-265504 Share on other sites More sharing options...
demon_athens Posted June 17, 2007 Share Posted June 17, 2007 You put this at the top of your code, put your relative or absolute path that points fckeditor.php <?php include("../FCKeditor/fckeditor.php") ; ?> In text fields that you want to fck to appear just put this code. Again put your base path and name you want for you object(first line). If you put this again with another name you have you second fck editor. The first line is the name of your field variable. <?php $oFCKeditor = new FCKeditor('main_gr') ; $oFCKeditor->BasePath = '../FCKeditor/'; $oFCKeditor->Width = '100%' ; $oFCKeditor->Height = '580' ; $oFCKeditor->Create() ; ?> Quote Link to comment https://forums.phpfreaks.com/topic/53722-fckeditor/#findComment-276220 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.