It is not totally unlimited (A TEXT column with a maximum length of 65,535 (216 � 1) characters.) but close enough for 95% of you

Originally done by Ron M:
https://ubbdev.com/forums/ubbth...%20Limit%20for%20Admins/.html#Post311060In /scripts/changebasic.inc.php
Find:
if ( strlen($lengthcheck) > $userob->check_access("site","SIGNATURE_LENGTH") ) {
Replace with:
if ( strlen($lengthcheck) > $userob->check_access("site","SIGNATURE_LENGTH") &&
( ($user['USER_MEMBERSHIP_LEVEL'] != "Administrator") && ($user['USER_MEMBERSHIP_LEVEL'] != "Moderator") )) {
Close and Save
In /scripts/previewsig.inc.php
Find:
$max = $userob->check_access("site","SIGNATURE_LENGTH");
if ($length > $max) {
$span = "standouttext";
$extra = $ubbt_lang['SHORTEN'];
}
Replace with:
if (($user['USER_MEMBERSHIP_LEVEL'] != "Administrator") && ($user['USER_MEMBERSHIP_LEVEL'] != "Moderator") )
{
$max = $userob->check_access("site","SIGNATURE_LENGTH");
if ($length > $max) {
$span = "standouttext";
$extra = $ubbt_lang['SHORTEN'];
}
} else {
$max = "Unlimited";
}
Close and Save
Upload both files overwriting current files.
Preview will now show:
You are using 85 of the Unlimited allowed characters.
Enjoy