• Maximum Etherpad limit users per pad

    Date: 2009.12.29 | Category: etherpad

    Quotas.js restricts this and by default reads:

    function getMaxSimultaneousPadEditors(globalPadId) {
    if (isProDomainRequest()) {
    if (pne_utils.isPNE()) {
    return licensing.getMaxUsersPerPad();
    } else {
    return 1e6;
    }
    } else {
    // etherpad.com public pads
    if (globalPadId && stringutils.startsWith(globalPadId, “conf-”)) {
    return 64;
    } else {
    return 32;
    }
    }
    return 1e6;
    }
    function getMaxSavedRevisionsPerPad() {
    if (isProDomainRequest()) {
    return 1e3;
    } else {
    // free public etherpad.com
    return 100;
    }
    }
    So to summarize:
    Depending on the mode you are in depends on the amount you have
    Non-Pro –>
    Max per time on 1 pad: 64
    Max revisions: 100
    Pro –>
    Max per time: Unlimited
    Max revisions: Unlimited

    Related Posts

    1. Rebranding Etherpad
    2. Securing Etherpad admin with a password
    3. Etherpad emails show wrong port (9000) when sending from version 1 running apache and mod_proxy
    4. Title: Fixing pro domain login for Etherpad installations running on XX YY ZZ type hosting IE prodomain.etherpad.mydomain.com
    5. Troubleshooting the Etherpad theme framework