Hopefully I'm not the only person having this problem. I have the CKFinder within a secure section of my site. This section uses form authentication (ASP.NET) to validate the user. Everything within the CKFinder works perfectly EXCEPT for when I hit the upload button. I then receive the following error:
I currently have the configuration file set to validate the user with the following code:
However, for some reason the Flash uploader is causing the page to not only return IsAuthenticated as false, but it also can not find the session variables I created at login. The CKFinder checks this variable about 6 times before hitting the "Upload" button, and passes each and every time. However, the "Upload" button results in a failure. I can't help but think there is a bug here that needs investigating.
Any help?
The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file.
I currently have the configuration file set to validate the user with the following code:
return (Page.User.Identity.IsAuthenticated || (Session["IsAuthenticated"] != null && (bool)Session["IsAuthenticated"] == true));
However, for some reason the Flash uploader is causing the page to not only return IsAuthenticated as false, but it also can not find the session variables I created at login. The CKFinder checks this variable about 6 times before hitting the "Upload" button, and passes each and every time. However, the "Upload" button results in a failure. I can't help but think there is a bug here that needs investigating.
Any help?
Re: New Flash Uploaded Disabled Due To Security Reasons
Attachments:
Re: New Flash Uploaded Disabled Due To Security Reasons
Could you try the solutions listed in Troubleshooting - Flash Upload Problem ?
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: New Flash Uploaded Disabled Due To Security Reasons
Thanks!