ispCP - Board - Support
Creating subdomain pma.domain.tld does not work - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Support Area (/forum-30.html)
+--- Forum: Usage (/forum-34.html)
+--- Thread: Creating subdomain pma.domain.tld does not work (/thread-7104.html)



Creating subdomain pma.domain.tld does not work - iRaS - 07-02-2009 12:33 AM

Why i can't create the Subdomin pma.domain.tld? Is there a possiblity to change that restriction?


RE: Creating subdomain pma.domain.tld does not work - BeNe - 07-02-2009 12:40 AM

Did you done this --> http://www.isp-control.net/documentation/howto/miscellaneous/create_panel.domain.tld_pma.domain.tld_webftp.domain.tld_and_webmail.domain.tld
Or what exactly ?

Greez BeNe


RE: Creating subdomain pma.domain.tld does not work - iRaS - 07-02-2009 01:26 AM

i just tried to add a subdomain to an existing user.
http://*.*.*/client/subdomain_add.php

The error message i got was:
"Subdomain already exists or is not allowed!"

The subdomain does not exist. So it is not allowed, but why?


RE: Creating subdomain pma.domain.tld does not work - joximu - 07-02-2009 08:36 AM

in client/subdomain_add.php

there's a list of subdomains that are "not allowed" (by default):

Code:
$std_subs = array(
  'www', 'mail', 'webmail', 'pop', 'pop3', 'imap', 'smtp', 'pma', 'relay',
  'ftp', 'ns1', 'ns2', 'localhost'
);

some make sense - others maybe not. You can change this array.

/J