semmypurewal / LearningWebAppDev

Examples from the book "Learning Web Application Development".
http://learningwebappdev.com
268 stars 356 forks source link

www.learningwebappdev.com does not resolve in DNS #2

Closed mikeraz closed 10 years ago

mikeraz commented 10 years ago

Subject says it all. learningwebappdev.com does resolve

semmypurewal commented 10 years ago

Interesting. It seems to be working for me, even when I clear my browser cache. I haven't updated it in at least a week.

What happens when you go to learningwebappdev.github.io?

Do you know how to use the command line? If so, can you try typing the following command:

$ dig learningwebappdev.com

And paste the output? Thanks very much!

semmypurewal commented 10 years ago

Ah, I think I found the problem. I hadn't set it up for the www subdomain, only for the domain. I just did that and so it should propogate over the next few days. In the meantime, I'll leave this issue open until it's working!

Thanks!

mikeraz commented 10 years ago

On Sun, Mar 09, 2014 at 01:33:36PM -0700, Semmy Purewal wrote:

Interesting. It seems to be working for me, even when I clear my browser cache. I haven't updated it in at least a week.

What happens when you go to learningwebappdev.github.io?

I'm redirected to http://learningwebappdev.com

Do you know how to use the command line? If so, can you try typing the following command: dig learningwebappdev.com

it's not learningwebappdev.com that's not resolving, it's the subdomain of www.learningwebappdev.com Perhaps you did not intend the www to be there but that's the way it is in the book.

And paste the output? Thanks very much!

For sake of completeness: michael@bivy ~ % dig learningwebappdev.com

; <<>> DiG 9.9.2-P2 <<>> learningwebappdev.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 45487
;; flags: qr rd ra ad; QUERY: 1, ANSWER: 2, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;learningwebappdev.com.         IN      A

;; ANSWER SECTION:
learningwebappdev.com.  10771   IN      A       192.30.252.153
learningwebappdev.com.  10771   IN      A       192.30.252.154

;; Query time: 3 msec
;; SERVER: 192.168.11.1#53(192.168.11.1)
;; WHEN: Sun Mar  9 14:21:27 2014
;; MSG SIZE  rcvd: 71

michael@bivy ~ % dig www.learningwebappdev.com

; <<>> DiG 9.9.2-P2 <<>> www.learningwebappdev.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 34709
;; flags: qr rd ra ad; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;www.learningwebappdev.com.     IN      A

;; Query time: 3 msec
;; SERVER: 192.168.11.1#53(192.168.11.1)
;; WHEN: Sun Mar  9 14:21:38 2014
;; MSG SIZE  rcvd: 43

michael@bivy ~ % 

  Michael Rasmussen, Portland Oregon  
Be Appropriate && Follow Your Curiosity

Feeling disheartened is considered a form of laziness in Buddhism. ~ Susan Piver

semmypurewal commented 10 years ago

Just checked, it looks like the DNS is propagating correctly now, so I'll go ahead and close this. Thanks for the feedback! Let me know if you have any further problems.