Hi,
I am having some trouble viewing the FCKeditor V2 beta 2. On the website it comes up fine, but when I try to put it on my local server the bar does not show at all. It just looks like a horizontal line. Anyone else having this trouble?
I am having some trouble viewing the FCKeditor V2 beta 2. On the website it comes up fine, but when I try to put it on my local server the bar does not show at all. It just looks like a horizontal line. Anyone else having this trouble?
RE: FCKeditor in firefox?
RE: FCKeditor in firefox?
Do the sample / test files work (i.e. the one included in the package) ?
If yes, then your problem is the configuration of your file, i.e. the way you call the editor or something else within your code. So provide us with some code to see if anyone can spot the error.
Also you *could* maybe do a search on your problem and see if the question has been answered before.
(i.e. could it be that your submit button is named "submit" (name="submit") ?, if so, that is the problem. That question has been answered in one of these fora and has been repeated not so very long again).
Whining that nobody is helping you when you don't give us enough info is just not very constructive.
RE: FCKeditor in firefox?
I am also having the same issue. I can see the editor on the FCKeditor site in Internet Explorer and Firefox. On my server I can only see it in Internet Explorer. I would like to be able to see it in Firefox.
RE: FCKeditor in firefox?
---------------------------
In the header......
-------------------------------
<script type="text/javascript" src="/FCKeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'MyTextarea' ) ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
------------------------------
And in the body of the text where the form is replaced....
--------------------------
<textarea name="MyTextarea" id="MyTextarea"><?php echo $row_Recordset1['text']; ?></textarea>
---------------------------------
Thanks for any help. All of the other code creates the PHP admin page. Thanks.
RE: FCKeditor in firefox?