Hi we try to use CKFinder For Java version but the upload file is not functional for IE.
it says Invalid file or folder name.But it works for FF.
How can we get it work for IE?
it says Invalid file or folder name.But it works for FF.
How can we get it work for IE?
Re: CKFinder for Java upload file problems in IE
What kind of file you want to upload and where?
There are lists of allowed extensions for each folder in config.xml file. Does the extension of your file is on one of those list?
Could I ask you to provide us with more details about this problem?
Re: CKFinder for Java upload file problems in IE
its with the function
private String getFileItemName(FileItem item)
{
if (item.getName().lastIndexOf('/') != -1) {
return item.getName().substring(item.getName().lastIndexOf('/') + 1);
}
return item.getName();
} in FileUploadCommand.class
the problem is that FileItem.getFileName() of apache-fileupload returns full path of uploaded file in IE on Windows and the pathseperator for windows is '\' not '/' so the code must be like this instedOf '/' there should be System.getProperty("file.separator").If developers change it this sould work for CKFinder on IE on windows plattforms.
Re: CKFinder for Java upload file problems in IE
Re: CKFinder for Java upload file problems in IE
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Invalid file or folder name error in IE
Hi,
I get the same error when I try uploading a file from CKEditor. Steps to reproduce
1. Go to Uploads tab of CkEditor where you have a Browse button.(assuming CkFinder is already integrated into CKEditor)
2. Browse and select any file(image or any other file). Click Open
3.Click on 'Send it to the Server'.
"Invalid file or folder name" is displayed. Upload tab happens to be Images option and Link option. I get the same error with either options.
Finally i am using CKEditor2.3 version.
Is this a known bug?
Is this in the Java version?
Is this in the Java version? What is your CKEditor and CKFinder version? What is the name of the folder that you are uploading to, and the filename?
Does this error occur in the CKFinder samples, too?
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
It is asp.net version
Hi Anna,
It is an asp.net app.. and the versions I used for CKEditor is 4.0.1 and CkFinder is 2.3.1, I am uploading the files to userfiles folder as mentioned in the documentation. If there was an issue with ckfinder locating the folder, I should get the error in firefox too.. But this error only occurs in internet explorer 9.0.
Yes I get this error even with CKFinder samples. Please advise.
Thanks
Thanks for this... And the
Thanks for this... And the name of the file that is giving you problems?
Please note that if you have a valid CKFinder license, you are entitled to use the support channel where our QA/ developers can guide you towards solving any issues that you may have. We don't provide direct support through the forum, it's more of pointing you to some known issues or problems discussed earlier, but that's it -- hope this is clear to you.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Same problem
Hi it seems that this issue still exists. Although everything works fine in chrome and firefox I cannot upload files in IE 9 nor 10. We were evaluating the application prior to purchase. If you could direct us to a solution it would be great as we need to work on IE
Thanks
Same issue
Hi,
I wanted to test CKFinder before buying the licence but I have the same issue as others here.
Files upload well with Firefox, Chrome and Opera but I have the "invalid filename or folder" error with Internet Explorer 9 and 10...
My environment is : ASPNET and CKFinder 2.3.1
Thx.
Moditha, Msynquintyn --
Moditha, Msynquintyn -- could you tell us more about your setup, just like Razkim did? We are trying to nail down the problem in order to be able to fix it. Thank you!
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Hi, Thanks for your reply,
Hi, Thanks for your reply,
My environment is : Asp.NET, IIS7, CKEditor 4.0.1 and CkFinder 2.3.1.
I'm uploading files to the "userfiles" folder as mentioned in the documentation. I also have the error with the "standalone.aspx" sample.
The error only occurs with Internet Explorer (Firefox, Opera and Chrome work as expected). So I suspect IE does send one of the parameters (perhaps the filename) in a maner that IIS (IIS 7) does not understand (like encoding ? white spaces ?)