Recently just today, I have downloaded LiveID and OpenID Authentication Providers from Project page for installing on DNN4.8.0
Once I install (host-> authentication settings) I got the error say:
Error loading files from temporary folder - see below
Failure |
This package type is not registered - Authentication System |
I have been looking to the DotNetNuke code by debuging and I have found the answer.
The problem come from file.dnn
This line:
<package name="DNN_OpenIDAuthentication" type="Authentication System" version="01.00.00">
because there is no type: "Authentication System" on table name: "PackageTypes", "Authentication System" is a description not a PackageType.
In order to make it works, just change the problem line to
<package name="DNN_OpenIDAuthentication" type="Auth_System" version="01.00.00">