http://ultradev.com.nmsrv.com/wysiwyg_error.jpg
<script type="text/javascript" src="/static/wysiwyg/fckeditor.js"></script> <script type="text/javascript"> <!-- var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = '/static/wysiwyg/'; oFCKeditor.Height = 300 ; oFCKeditor.Value = '' ; oFCKeditor.Create() ; //--> </script>

Re: 404 - even in a basic script :/
I managed to get it working with using the following code (to "replace" a TEXTAREA);
<script type="text/javascript"> window.onload = function() { var oFCKeditor = new FCKeditor( 'EmbedVideo' ) ; oFCKeditor.BasePath = '/static/wysiwyg/'; oFCKeditor.Width = '550'; oFCKeditor.ToolbarSet = 'Basic' ; oFCKeditor.ReplaceTextarea() ; } </script>However, the following bit doesn't seem to be working:
oFCKeditor.ToolbarSet = 'Basic' ;
It still shows all the toolbar menus :/
TIA!
Re: 404 - even in a basic script :/
<script type="text/javascript"> window.onload = function() { var oFCKeditor1 = new FCKeditor( 'OtherInfo' ) ; oFCKeditor1.BasePath = '/static/wysiwyg/'; oFCKeditor1.Width = '550'; oFCKeditor1.ToolbarSet = 'Basic' ; oFCKeditor1.ReplaceTextarea() ; var oFCKeditor2 = new FCKeditor( 'BodyText' ) ; oFCKeditor2.BasePath = '/static/wysiwyg/'; oFCKeditor2.Width = '550'; oFCKeditor2.ToolbarSet = 'Basic' ; oFCKeditor2.ReplaceTextarea() ; var oFCKeditor3 = new FCKeditor( 'Credability' ) ; oFCKeditor3.BasePath = '/static/wysiwyg/'; oFCKeditor3.Width = '550'; oFCKeditor3.ToolbarSet = 'Basic' ; oFCKeditor3.ReplaceTextarea() ; var oFCKeditor4 = new FCKeditor( 'ContactDetails2' ) ; oFCKeditor4.BasePath = '/static/wysiwyg/'; oFCKeditor4.Width = '550'; oFCKeditor4.ToolbarSet = 'Basic' ; oFCKeditor4.ReplaceTextarea() ; var oFCKeditor5 = new FCKeditor( 'ContactDetails' ) ; oFCKeditor5.BasePath = '/static/wysiwyg/'; oFCKeditor5.Width = '550'; oFCKeditor5.ToolbarSet = 'Basic' ; oFCKeditor5.ReplaceTextarea() ; } </script>