Re: Folder size check is causing image gallery and downloadable files dialogs to open extremely slow...How do we turn this off?

  •  05-19-2006, 1:27 AM

    Re: Folder size check is causing image gallery and downloadable files dialogs to open extremely slow...How do we turn this off?

    dalmuti509,
     
    >>Is there a way to turn off the size check for documents/images in a folder? 
     
    Please open InsertDocument.Frame.aspx, Gecko_InsertDocument.Frame.aspx and safari_insertdocument.aspx.
     
    And find the following code:
     
      protected override string CheckUploadData(ref byte[] data)
        {
      if (fs.GetDirectorySize(fs.VirtualRoot) >= secset.MaxDocumentFolderSize * 1024)
               return "File folder size exceeds the limit: "+ CuteEditor.Impl.FileStorage.FormatSize(secset.MaxDocumentFolderSize * 1024);
      if (data.Length >= secset.MaxDocumentSize * 1024)
                return "File size exceeds "+CuteEditor.Impl.FileStorage.FormatSize(secset.MaxDocumentSize * 1024)+" limit: "+ CuteEditor.Impl.FileStorage.FormatSize(data.Length);
            return null;
        }
     
    Change it to:
     
      protected override string CheckUploadData(ref byte[] data)
        {
      if (fs.GetDirectorySize(fs.VirtualRoot) >= secset.MaxDocumentFolderSize * 1024)
               return "File folder size exceeds the limit: "+ CuteEditor.Impl.FileStorage.FormatSize(secset.MaxDocumentFolderSize * 1024);
      if (data.Length >= secset.MaxDocumentSize * 1024)
                return "File size exceeds "+CuteEditor.Impl.FileStorage.FormatSize(secset.MaxDocumentSize * 1024)+" limit: "+ CuteEditor.Impl.FileStorage.FormatSize(data.Length);

            return null;
        }
     
    Hope it helps.
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread