Here is the problem I have,
I tried to add a sub domain to one of my domians using cpanel, the error I get is:
SubDomain Creation
The zone for the root domain xyz.com is missing, or could not be read. The ip address will be read from the webserver configuration and a new zone will be created for this subdomain.
Created DNS entry for test.xyz.com
The subdomain, test.attalim.net has been added.
I went to WHM and logged in as root and saw that all the zones are missing on the Edit Zone page. No domains are displaying. Next I checked named.conf and all the entries are there as should be, I checked domain.com.db for all domains and its there as it should be but then why am I getting this error? and why are the zones missing from whm?
I am not that good at stuff but I think this entry in named.conf seems weird and if its wrong then how do I correct it?
GNU nano 1.3.5-cvs File: /etc/named.conf Modified
//
zone "." IN {
type hint;
file "/var/named/named.ca";
};
logging {
category notify { null; };
category lame-servers { null; };
};
zone "localdomain" IN {
type master;
file "/var/named/localdomain.zone";
allow-update { none; };
};
zone "localhost" IN {
type master;
file "/var/named/localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "/var/named/named.local";
allow-update { none; };
};
zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "/var/named/named.ip6.local";
allow-update { none; };
};
zone "255.in-addr.arpa" IN {
type master;
Please help.