Main navigation
Product navigation
Main content
CKEditor 4
Overview
Demo
Accessibility Checker
Add-ons
Documentation
Download
Pricing
More
Home
WYSIWYG Editors
CKEditor 4
CKEditor 5
Image upload
CKFinder
Easy Image
Collaboration
Comments
New
Track changes
New
Collaborative editing
Pricing
Case studies
New
Documentation
Help center
Blog
Contact us
The forum operates in
read-only
mode. Please head to
StackOverflow
for support.
Forums
CKEditor
Support
Last post
Fri, 07/10/2009 - 00:17
#1
bcolflesh
Joined:
10/07/2009
Posts:
3
Firefox 3.5 - FCKConfig is not defined
Firefox 3.5 doesn't start the editor due to error posted in the subject - points to the fckconfig.js file, this line:
FCKConfig.CustomConfigurationsPath = '' ;
Fri, 07/10/2009 - 00:25
#2
bcolflesh
Joined:
10/07/2009
Posts:
3
Re: Firefox 3.5 - FCKConfig is not defined
Defining FCKConfig starts a cascade of other non-defined errors.
Looks like Mozilla got tough with loosely written JavaScript.
Fri, 07/10/2009 - 00:48
#3
bcolflesh
Joined:
10/07/2009
Posts:
3
Re: Firefox 3.5 - FCKConfig is not defined
Actually, I am an idiot - I'm using the JS method and passing some custom vars -
oFCKeditor.Width = '100%' ;
oFCKeditor.BasePath = '/fckeditor/' ;
oFCKeditor.ReplaceTextarea() ;
I had double quotes around the values instead of single - Firefox 3.5 works fine when you use single quotes, other browsers seem fine with either one.
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
Re: Firefox 3.5 - FCKConfig is not defined
Looks like Mozilla got tough with loosely written JavaScript.
Re: Firefox 3.5 - FCKConfig is not defined
oFCKeditor.Width = '100%' ;
oFCKeditor.BasePath = '/fckeditor/' ;
oFCKeditor.ReplaceTextarea() ;
I had double quotes around the values instead of single - Firefox 3.5 works fine when you use single quotes, other browsers seem fine with either one.