A couple of tips for anyone attempting to install the source package of DNN 6.2.0 CTP2 . . .
1) Before beginning installation of the source package, remove the following provider extension:
Website/Install/Provider/FiftyOnePremiumProvider_6.2.0_Install.zip
This provider is intended only for DotNetNuke Professional and since it was compiled with a reference to the DotNetNuke Professional assembly an unhandled exception (assembly not found) will be thrown resulting in a failed installation.
2) Following a successful installation of the framework and the Journal module, modify lines 12 and 13 of the file:
Website/DesktopModules/Journal/View.ascx
to add the path-resolution tilde character (~) at the beginning of the FilePath attribute values as follows
<dnn:DnnJsInclude runat="server" FilePath="~/Resources/Shared/Components/UserFileManager/UserFileManager.js" Priority="103"></dnn:DnnJsInclude>
<dnn:DnnCssInclude runat="server" FilePath="~/Resources/Shared/Components/UserFileManager/UserFileManager.css"></dnn:DnnCssInclude>
Without the tilde, the referenced script and css style sheet will not be loaded causing the photo and attachment icon buttons to not open the user file selection area and a 404 Http Error (not found) to be seen for those two files in Fiddler. This failure occurs regardless of whether debugging has been enabled in web.config. Oddly, the path to both UserFileManager.js and UserFileManager.css does resolve properly without the tilde when using the install package. This issue has been created in Gemini.