Here is what I have in the HEAD of my page:
<script language="JavaScript" type="text/JavaScript" src="FCKeditor/fckeditor.js"></script>
Here is what I have in the middle of my form:
<td colspan="3">
<!-- Editor Text Area -->
<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'content' ) ;
oFCKeditor.Value = 'Patrick Testing' ;
oFCKeditor.Create() ;
</script>
<!-- End of Editor Text Area -->
</td>
In the middle of my HTML form I am getting the standard IE 'Page not Found' errors. Almost like it is trying to imbed another page and cannot find it.
Any help or hints would be appreciated.
<script language="JavaScript" type="text/JavaScript" src="FCKeditor/fckeditor.js"></script>
Here is what I have in the middle of my form:
<td colspan="3">
<!-- Editor Text Area -->
<script type="text/javascript">
var oFCKeditor = new FCKeditor( 'content' ) ;
oFCKeditor.Value = 'Patrick Testing' ;
oFCKeditor.Create() ;
</script>
<!-- End of Editor Text Area -->
</td>
In the middle of my HTML form I am getting the standard IE 'Page not Found' errors. Almost like it is trying to imbed another page and cannot find it.
Any help or hints would be appreciated.
RE: Getting Page not found
Colin
RE: Getting Page not found
The 404 normally is caused by incorrect path settings for:
a) base path and
b) path to the js file
I would advise you to :
a) have a good look at the paths you are using and
b) use lower case directory names as on any *nix server mixing case will normaly give problems.
Good luck.
RE: Getting Page not found
C
RE: Getting Page not found
It is not mentioned anyplace but the BasePath attribute was required for my installation. So I had to add:
oFCKeditor.BasePath = "/cdpdev/FCKeditor/" ;
The BasePath is relative to the root directory. That fixed mine.