Hello Everyone
I have a ASP.Net page which has CKEditor for accepting formatted input. The Ckeditor is wokring fine in local system. after updating to server, the CKEditor does not disply.
in fireFox console, i have noted ckeditor.js is marked as "500 Internal server error" status.
what could be the problem? i am sure the path is correct.
I am displaying CKEditor with the following JS:
var ts = document.getElementById('<%= txtPlain.ClientID %>');
var ck = CKEDITOR.replace(ts);
in window onload event.
for testing, we have hosted to a subfolder and the subfolder has the ckeditor folder in its path.
to be clear,
/www (ROOT Folder)
-->MyWebSite
---------------->ckeditor
and the page that is using ckeditor is inside MyWebsite folder.
and i am referring the script as
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
FYI, in hosted server, if i access ckeditor/_samples/index.html ->that also gives the same internal server error..
anybody please help!.
I have a ASP.Net page which has CKEditor for accepting formatted input. The Ckeditor is wokring fine in local system. after updating to server, the CKEditor does not disply.
in fireFox console, i have noted ckeditor.js is marked as "500 Internal server error" status.
what could be the problem? i am sure the path is correct.
I am displaying CKEditor with the following JS:
var ts = document.getElementById('<%= txtPlain.ClientID %>');
var ck = CKEDITOR.replace(ts);
in window onload event.
for testing, we have hosted to a subfolder and the subfolder has the ckeditor folder in its path.
to be clear,
/www (ROOT Folder)
-->MyWebSite
---------------->ckeditor
and the page that is using ckeditor is inside MyWebsite folder.
and i am referring the script as
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
FYI, in hosted server, if i access ckeditor/_samples/index.html ->that also gives the same internal server error..
anybody please help!.
Re: CKEditor not showing in hosted server