Hey everyone,
I have got a problem : in fact, my editor (integrated with PHP), has not the same size in localhost or online.
I have set (a long time ago) an option in an editor system file to enlarge the editor area, but i don't remember now what file i changed. It worked well in localhost, but today, when i put online the files i used since the beginning, the size of the editor is not the same... both with firefox 3.0...
Has anyone got an idea please ?
Good night,
capiauxcle
I have got a problem : in fact, my editor (integrated with PHP), has not the same size in localhost or online.
I have set (a long time ago) an option in an editor system file to enlarge the editor area, but i don't remember now what file i changed. It worked well in localhost, but today, when i put online the files i used since the beginning, the size of the editor is not the same... both with firefox 3.0...
Has anyone got an idea please ?
Good night,
capiauxcle

Re: Diffrent editor area localhost/online
Re: Diffrent editor area localhost/online
If you still can't find it, can you remember when you edited it? You could look at the dates the files were modified and look for that.
Re: Diffrent editor area localhost/online
Re: Diffrent editor area localhost/online
Re: Diffrent editor area localhost/online
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = './fckeditor/' ; $oFCKeditor->Value = 'Type your text here' ; $oFCKeditor->Create() ; ?>Where do i put the property to enlarge the size of my editor ?
I included also the file "fckeditor.php" at the beginning of my file :
<?php include_once("./fckeditor/fckeditor.php") ; ?>Good night !
Re: Different editor area localhost/online
Re: Different editor area localhost/online
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = './fckeditor/' ; $oFCKeditor->ToolbarSet = 'Default' ; $oFCKeditor->Height='Type here your default height size'; $oFCKeditor->Value = 'Type your text here' ; $oFCKeditor->Create() ; ?>