I am new to the Ruby on Rails programming system and I just purchased Railspace but I cannot pull up this URL needed to progress further through the book, It is telling me it is an invalid URL, what should I do? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I believe you have the address wrong. Shouldn''t it be a colon (:) instead of a slash (/) between localhost and 3000? i.e.: http://localhost:3000/ Pepe On Sep 13, 1:11 pm, Warrenk <Warren_khat...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:> I am new to the Ruby on Rails programming system and I just purchased > Railspace but I cannot pull up this URL needed to progress further > through the book, It is telling me it is an invalid URL, what should I > do?--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Warren, It is - http://localhost:3000 That''s a colon, not a slash : 3000 is the port on which Rails is listening. Phil On Saturday 13 September 2008 18:11:34 Warrenk wrote:> I am new to the Ruby on Rails programming system and I just purchased > Railspace but I cannot pull up this URL needed to progress further > through the book, It is telling me it is an invalid URL, what should I > do? > >-- Philip Nelson ScotDB Limited (teamdba-RvFq4O/J5Z7QT0dZR+AlfA@public.gmane.org) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Warrenk wrote:> I am new to the Ruby on Rails programming system and I just purchased > Railspace but I cannot pull up this URL needed to progress further > through the book, It is telling me it is an invalid URL, what should I > do?You meant http://localhost:3000/ with a colon, right? The colon introduces the port number, which is :80 by default. Websites in a development mode typically run on a port higher than some number, such as 1024, because these ports have different security issues, and are up for grabs. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---