I have an umbraco website where I want to add fileuploader from a separate VS working project. I added it to the umbraco VS project with the addition of an existing project.
Then I moved the code from default.aspx to usercontrol to add it to my umbraco.
But when I try to download some files, I get 500 errors. In my event viewer, I have the following 2 exceptions:
Exception message: the type "jQueryUploadTest.FileTransferHandler" is ambiguous: it can be obtained from the assembly "C: \ UmbracoSites \ sitename \ sitename \ bin \ sitename.DLL" or from the assembly "C: \ UmbracoSites \ sitename \ sitename \ bin \ jQueryUpload .DLL. Please specify the assembly explicitly in the type name.
Invalid directory specified for caching compressed content. C: \ Users \ name \ AppData \ Local \ Temp \ iisexpress \ IIS Temporary Compressed Files \ Clr4IntegratedAppPool. Static compression is disabled.
What does it mean? How does this come from sitename.DLL file when dll etc. They are copied from jQueryUploadTest during assembly and have nothing to do with sitename.DLL.
source
share