Configurations documentation
<textarea name="editor1"></textarea>
<script type="text/javascript">
window.onload = function ()
{
CKEDITOR.replace("editor1",
{
customConfig: 'config.js'
});
};
</script>
CKEDITOR.editorConfig = function (config)
{
// Define changes to default configuration here. For example:
config.language = 'fr';
config.uiColor = '#AADC6E';
};

Re: customConfig Issues
<textarea name="editor1"></textarea> <script type="text/javascript"> window.onload = function () { CKEDITOR.replace("editor1", { customConfig: '../config.js' }); }; </script>Just remember that the path to the customConfig is relative to the CKEditor script, so you should have looked at the Net panel in Firebug to check for a 404
Re: customConfig Issues
Re: customConfig Issues