ユーザー名(ID)に使える文字数や種類は、デフォルトでは以下のとおりです。 最大文字数:64字 最小文字数:3字 先頭および末尾に使える文字:英字(大文字、小文字)、数字 中間で使える文字:英字(大文字、小文字)、数字、_(アンダーバー)、.(ドット) 使える文字の説明文 A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end). エラー文 A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end). これは管理画面から変更することはできません。 変更する場合は /application/config/concrete.php で設定する必要があります。 <?php return [ 'user' => [ 'username' => [ 'maximum' => 64, // 最大文字数 'minimum' => 3, // 最小文字数 'allowed_characters' => [ 'boundary' => 'A-Za-z0-9', // 先頭及び末尾に使える文字 'middle' => 'A-Za-z0-9_\.', // 中間で使える文字 'requirement_string' => 'A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end).', // 使える文字の説明文 'error_string' =>…
https://concretecms-help.macareux.co.jp/admin/config/username-character