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
Thu, 11/08/2007 - 00:02
#1
brillox
Joined:
13/09/2007
Posts:
32
file upload problem
http://localhost:49497/taysidediabetes/ ... 4476260861
Thu, 11/08/2007 - 10:28
#2
beerbelly
Joined:
08/11/2007
Posts:
1
Re: file upload problem
I think you might have the wrong connector selected.
Edit fckconfig.js and set the next 2 variables to the programming language you use for your editor:
_FileBrowserLanguage
_QuickUploadLanguage
in example:
var _FileBrowserLanguage = 'php' ;
var _QuickUploadLanguage = 'php' ;
Sat, 11/10/2007 - 09:42
#3
brillox
Joined:
13/09/2007
Posts:
32
Re: file upload problem
they are set to...
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
I use .net
Sat, 11/10/2007 - 10:50
#4
brillox
Joined:
13/09/2007
Posts:
32
GOT THE SOLUTION !!!
As usual is my SUPERFICIAL nature of my personality that causes me problem !!!
I entirely forgot that I had this setting into the web config file.
<add key="FCKeditor:UserFilesPath" value="/fckeditor/UserFiles/" />
so the mistake was the....
/
!!!!!!!!!!!
I now have this
<add key="FCKeditor:UserFilesPath" value="fckeditor/UserFiles/"/>
and it works absolutely fine !!!
Wed, 11/14/2007 - 22:34
#5
run4it
Joined:
13/11/2007
Posts:
10
Re: file upload problem
can you please tell me which config file this is in? I am having the same problem and have tried everything. I am not familiar with: <add key=
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
Re: file upload problem
Edit fckconfig.js and set the next 2 variables to the programming language you use for your editor:
_FileBrowserLanguage
_QuickUploadLanguage
in example:
var _FileBrowserLanguage = 'php' ;
var _QuickUploadLanguage = 'php' ;
Re: file upload problem
var _FileBrowserLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
I use .net
GOT THE SOLUTION !!!
I entirely forgot that I had this setting into the web config file.
<add key="FCKeditor:UserFilesPath" value="/fckeditor/UserFiles/" />
so the mistake was the.... !!!!!!!!!!!
I now have this
<add key="FCKeditor:UserFilesPath" value="fckeditor/UserFiles/"/>
and it works absolutely fine !!!
Re: file upload problem