I'm fairly new to CKFinder, so bare with me.
I am working in a ASP.NET enviroment. I was able to successfully get CKFinder working on it's own in a standalone project.
However, now that I'm trying to merge it with our project, I keep getting errors.
When I try to run the standalone.aspx sample, I get the following error:
Compiler Error Message: CS0433: The type 'CKFinder.FileBrowser' exists in both 'c:\Users\username\AppData\Local\Temp\Temporary ASP.NET Files\root\fa328f3a\91a7995b\assembly\dl3\419e5ffc\88c4230b_739fce01\IS.DLL' and 'c:\Users\username\AppData\Local\Temp\Temporary ASP.NET Files\root\fa328f3a\91a7995b\assembly\dl3\5fe9c46b\00c9eba8_cf98ce01\CKFinder.DLL' Line 62: an image is selected (double-clicked).</div> Line 63: <p style="padding-left: 30px; padding-right: 30px;"> Line 64: <CKFinder:FileBrowser ID="FileBrowser1" BasePath="../../" SelectFunction="ShowFileInfo" Height="600" runat="server"></CKFinder:FileBrowser> Line 65: </p> Line 66: <div id="footer">
When I run the popup.aspx sample, and try to 'Browse' to CKFinder, it comes up with the following error.
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: The type 'CKFinder.Connector.Connector' is ambiguous: it could come from assembly 'C:\Users\username\Dropbox\BetaIS\IS\bin\IS.DLL' or from assembly 'C:\Users\username\Dropbox\BetaIS\IS\bin\CKFinder.DLL'. Please specify the assembly explicitly in the type name.
I've searched everywhere, and have tried many fixes, but nothing seems to fix this for me.
Thanks for your help.
Update... I was able to get
Update... I was able to get past the first error by changing the 'Build Action' of certain files to 'Content' instead of 'Compile'.
So now the CKFinder loads, however, it pops up with the second error still.
I was able to resolve my
I was able to resolve my issue by change the Build Action of all the .cs files for CKFinder to "Content" instead of "Compile".
In case anyone else runs into a similar issue.