I am trying to install a third party Authentication Provider. When I try to install the zipped folder using the install extension wizard it fails to locate the file even though its both in the zip and in the folder DesktopModules/AuthenticationServices/Fellows/ on my site. I'm confused as I have been able to install other modules and it had no problem reading the files.
Part of the .dnn file code:
<components>
<component type="AuthenticationSystem">
<authenticationService>
<type>FellowsAuthentication</type>
<settingsControlSrc>DesktopModules/AuthenticationServices/Fellows/Settings.ascx</settingsControlSrc>
<loginControlSrc>DesktopModules/AuthenticationServices/Fellows/Login.ascx</loginControlSrc>
<logoffControlSrc />
</authenticationService>
</component>
<component type="File">
<files>
<basePath>DesktopModules/AuthenticationServices/Fellows</basePath>
<file>
<path>App_LocalResources</path>
<name>Login.ascx.resx</name>
</file>
I get the error message:
Failure File specified in the dnn could not be found in the zip file: - E:\DNN\Install\Temp\z2ypiwfl\App_LocalResources\Login.ascx.resx
It's weird that it seems to be trying to read them from a temp folder. Why is that?