I just installed CKEditor on my host and I have no toolbar icons in the samples or in the program that was working fine on my local machine.
I installed it on my local machine under an indigo installation with apache and it works fine. But uploaded it to to different servers with the same result. No icons on the toolbar in either my program or the samples. I looked at the source in my program and the area in my program where the editor was placed looks like this.
it appears that somewhere it is screwing up the path note the window.ckeditor_basepath='itor/'
The same area in the same program running on the local machine where it works looks like this:
notice there is a complete path at the same location.
What would cause this and where would I look to fix it.
I installed it on my local machine under an indigo installation with apache and it works fine. But uploaded it to to different servers with the same result. No icons on the toolbar in either my program or the samples. I looked at the source in my program and the area in my program where the editor was placed looks like this.
<tr><td colspan=2>Category Information <br><textarea name="catinfo" rows="8" cols="60"></textarea> <script type="text/javascript">//<![CDATA[ window.CKEDITOR_BASEPATH='itor/'; //]]></script> <script type="text/javascript" src="itor/ckeditor.js?t=B5GJ5GG"></script> <script type="text/javascript">//<![CDATA[ CKEDITOR.replace('catinfo'); //]]></script> </td></tr>
it appears that somewhere it is screwing up the path note the window.ckeditor_basepath='itor/'
The same area in the same program running on the local machine where it works looks like this:
<tr><td colspan=2>Category Information <br><textarea name="catinfo" rows="8" cols="60"><p> This is amythest</p> </textarea> <script type="text/javascript">//<![CDATA[ window.CKEDITOR_BASEPATH='/beadsdirect/admin/ckeditor/'; //]]></script> <script type="text/javascript" src="/beadsdirect/admin/ckeditor/ckeditor.js?t=B5GJ5GG"></script> <script type="text/javascript">//<![CDATA[ CKEDITOR.replace('catinfo'); //]]></script> </td></tr>
notice there is a complete path at the same location.
What would cause this and where would I look to fix it.