hallo,
vielleicht nur mal so zum testen in config/system/additional.php probieren.
<?php
//password policiy https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/PasswordPolicies/Index.html#configuring-password-policies
// s. dort auch Disable password policies globally
$GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies'] = [
'simple' => [
'validators' => [
\TYPO3\CMS\Core\PasswordPolicy\Validator\CorePasswordValidator::class => [
'options' => [
'minimumLength' => 3,
'upperCaseCharacterRequired' => false,
'lowerCaseCharacterRequired' => false,
'digitCharacterRequired' => false,
'specialCharacterRequired' => false,
],
],
],
],
];
#$GLOBALS['TYPO3_CONF_VARS']['BE']['passwordPolicy'] = 'simple';
#$GLOBALS['TYPO3_CONF_VARS']['FE']['passwordPolicy'] = 'simple';
**#Disable password policies globally**
$GLOBALS['TYPO3_CONF_VARS']['BE']['passwordPolicy'] = '';
$GLOBALS['TYPO3_CONF_VARS']['FE']['passwordPolicy'] = '';