Ok, I did a test on my server and was able to add shared.mach-hosting.ninja after altering the code.
Reason:
The current code only allows 3 character .TLDs for domains - This needs to be changed to 13.
OPEN:
FIND: (About line 234)
REPLACE WITH:
SAVE
I will do a pull request on GitHub if this works for you so it will be solved in the next release
(Will also check the sub-domains module.)
Reason:
The current code only allows 3 character .TLDs for domains - This needs to be changed to 13.
OPEN:
Code:
/panel/modules/domains/code/controller.ext.php
FIND: (About line 234)
Code:
if (strlen($check) > 3) {
REPLACE WITH:
Code:
if (strlen($check) > 13) {
SAVE
I will do a pull request on GitHub if this works for you so it will be solved in the next release
(Will also check the sub-domains module.)