Hi @maestraweb,
It looks like you still have an old REGISTER SLUG value which was obsoleted quite a while ago (in recent WordPress releases the file wp-register.php no longer exists). This should have been taken care of automagically when updating the Solid Security plugin but there may have been an upgrade issue leading to the current situation.
Anyway, manually changing the value wp-register.php to wp-signup.php should fix the validation error.
As proof that wp-signup.php is the correct default value have a look in the
better-wp-security/core/modules/hide-backend/module.json file which contains the correct default values for the Hide Backend module:
"register": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^(wp-signup\\.php|[\\w\\-?&=#%]+)$",
"default": "wp-signup.php",
"title": "Register Slug"
},
-
This reply was modified 1 day, 13 hours ago by
nlpro.