No, you still need to get the domain to resolve to your old IP address. The parked domain stuff is just for apache to VirtualHost alias it.
See, when a user types domain1.tld into their browser, not only do they send a request to the IP of domain1.tld, they also send the name "domain1.tld" in that request. It's that name that apache uses to figure out where the website is. That's what the stuff in CPanel does.
Just looking at this:
Code: Select all
d11wtq swiftmailer.org # ping www.sunrise-lmg.com
PING www.sunrise-lmg.com (213.230.203.88) 56(84) bytes of data.
64 bytes from 213.230.203.88: icmp_seq=1 ttl=58 time=11.6 ms
d11wtq swiftmailer.org # ping www.holidayrentalpropertyportugal.org
ping: unknown host www.holidayrentalpropertyportugal.org
The domain hasn't been set up to have an IP on the nameserver it's pointing to.
Code: Select all
d11wtq swiftmailer.org # dig ALL www.sunrise-lmg.com
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 13908
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;ALL. IN A
;; AUTHORITY SECTION:
. 10800 IN SOA a.root-servers.net. nstld.verisign-grs.com. 2006082200 1800 900 604800 86400
;; Query time: 23 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Aug 22 14:37:39 2006
;; MSG SIZE rcvd: 96
; <<>> DiG 9.2.5 <<>> ALL www.sunrise-lmg.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 61752
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 0
;; QUESTION SECTION:
;www.sunrise-lmg.com. IN A
;; ANSWER SECTION:
www.sunrise-lmg.com. 3349 IN A 213.230.203.88
;; AUTHORITY SECTION:
sunrise-lmg.com. 172549 IN NS ns2.dnszones.net.
sunrise-lmg.com. 172549 IN NS ns0.dnszones.net.
;; Query time: 13 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Aug 22 14:37:39 2006
;; MSG SIZE rcvd: 101
Code: Select all
d11wtq swiftmailer.org # dig ALL www.holidayrentalpropertyportugal.org
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 48166
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;ALL. IN A
;; AUTHORITY SECTION:
. 10761 IN SOA a.root-servers.net. nstld.verisign-grs.com. 2006082200 1800 900 604800 86400
;; Query time: 14 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Aug 22 14:38:17 2006
;; MSG SIZE rcvd: 96
; <<>> DiG 9.2.5 <<>> ALL www.holidayrentalpropertyportugal.org
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 53690
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;www.holidayrentalpropertyportugal.org. IN A
;; AUTHORITY SECTION:
org. 10538 IN SOA tld1.ultradns.net. domadmin.ultradns.net. 2006176572 1800 900 604800 86400
;; Query time: 13 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Tue Aug 22 14:38:17 2006
;; MSG SIZE rcvd: 117
Those two results of running "dig" on the domains you have confirms my suspicions. There's not one single NS record for the new domain, so there's no way to resolve an IP for it.
I suggest you don't try pointing it to another DNS. Just open the control panel for you new domain, use their own nameservers by placing "213.230.203.88" in the "A" record field.
If you already have
http://www.holidayrentalpropertyportugal.org set up as a parked domain in CPanel just wait for the changes to propogate.... it might only take a few hours.