Hi, I use Rad Editorn in my Dnn instance and i am trying to upgrade to 5.3.0 from 5.2.3.
I get this Compilation Error:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30455: Argument not specified for parameter 'hideSystemFolders' of 'Public Shared Sub Synchronize(PortalId As Integer,AdministratorRoleId As Integer, HomeDirectory As String, hideSystemFolders As Boolean)'.
Line 25: DotNetNuke.Common.Utilities.FileSystemUtils.Synchronize(DotNetNuke.Common.Utilities.Null.NullInteger, DotNetNuke.Common.Utilities.Null.NullInteger, DotNetNuke.Common.Globals.HostMapPath)
If I insert ,FALSE as last parameter the compilation continue with a new errror:
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30516: Overload resolution failed because no accessible 'SynchronizeFolder' accepts this number of arguments.
Source Error:
|
Line 121: If IsFolderSecure(objFolderInfo) Then
Line 122: 'if file is uploaded to secure file system, we need to sync the folder to rename the file with a .resources extension
Line 123: FileSystemUtils.SynchronizeFolder(objFolderInfo.PortalID, objFolderInfo.PhysicalPath, objFolderInfo.FolderPath, False)
Line 124: End If
Line 125: Return returnValue
|
Thanks, Sandro