Hhhm, it looks like theres an overflow error in the filemanager. The GetPortalSpaceUsed function is used in a number of locations, as well as referencing a sproc of the same name, so it may not be a trivial change. Please log it at the public issuelog @
http://support.dotnetnuke.com/project/Project.aspx?PROJID=23 so it can be worked on for a future version.
Note: I haven't tried this yet, but I suspect the problem is in GetFileTable in FileManager.ascx.vb (the highlighted line)
myColumns = New DataColumn
myColumns.DataType = System.Type.GetType("System.Int32") myColumns.ColumnName = "IntFileSize"
tblFiles.Columns.Add(myColumns)
You could try changing it to be System.Int64 to see if the overflow is just on the filesize
Cathal