Are there any way to set CKFinder quota, so that if I set the quota to 100MB, when user try to upload more than 100MB (total) CKFinder will tell me no?
I think I have found the solution I am using ASP.NET version so it may differ for other languages.
Followings are what you must edit:
Settings.ConfigFile.cs
Add public int QuotaSize; //this is in MegaByte Add public string QuotaSetFolder; Also add in constructor as well, and do something like QuotaSetFolder = BaseUrl;
Re: Setting quota?
I think I have found the solution
I am using ASP.NET version so it may differ for other languages.
Followings are what you must edit:
Settings.ConfigFile.cs
Add public int QuotaSize; //this is in MegaByte
Add public string QuotaSetFolder;
Also add in constructor as well, and do something like QuotaSetFolder = BaseUrl;