Hi! I was wondering if someone could maybe help me out. I''m just starting to learn Rails, and I''m doing this tutorial: http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html The thing is, I started doing it at work, and it worked fine, but when I got home and tried to do it all over again, I couldn''t get the app to load on firefox!! (figure 8), I just got "Unable to connect'' I can''t seem to figure out what''s wrong, or what I can do to fix this. Can anyone help me? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Lilliana Viquez wrote:> Hi! I was wondering if someone could maybe help me out. I''m just > starting to learn Rails, and I''m doing this tutorial: > http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html > > The thing is, I started doing it at work, and it worked fine, but when I > got home and tried to do it all over again, I couldn''t get the app to > load on firefox!! (figure 8), I just got "Unable to connect'' > > I can''t seem to figure out what''s wrong, or what I can do to fix this. > Can anyone help me?this could be a million reasons; i don''t think anyone''s gonna answer (just because from the info alone, nothing can be gathered) try posting the error stack trace or some debugged rails log info or something like that hope it works out for ya -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
On Dec 24, 9:05 pm, Lilliana Viquez <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > The thing is, I started doing it at work, and it worked fine, but when I > got home and tried to do it all over again, I couldn''t get the app to > load on firefox!! (figure 8), I just got "Unable to connect''Do you have a Web server (WEBrick, mongrel, etc.) running at home? ///ark --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Lilliana Viquez wrote:> Hi! I was wondering if someone could maybe help me out. I''m just > starting to learn Rails, and I''m doing this tutorial: > http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html > > The thing is, I started doing it at work, and it worked fine, but when I > got home and tried to do it all over again, I couldn''t get the app to > load on firefox!! (figure 8), I just got "Unable to connect'' > > I can''t seem to figure out what''s wrong, or what I can do to fix this. > Can anyone help me?i am also just starting to learn Rails...and that tutorial was one of the many I tried... and I have to tell you that most of the tutorials out there like the one u provided will not work 100% with rails 2.0 ~ experienced it first hand =X -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
On Dec 24, 11:05 pm, Lilliana Viquez <rails-mailing-l...@andreas- s.net> wrote:> Hi! I was wondering if someone could maybe help me out. I''m just > starting to learn Rails, and I''m doing this tutorial:http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html > > The thing is, I started doing it at work, and it worked fine, but when I > got home and tried to do it all over again, I couldn''t get the app to > load on firefox!! (figure 8), I just got "Unable to connect''The most probably reason is that the newest version of Rails is 2.0, this tutorial is written for 1.2. Outstanding tutorials are yet to come for 2.0 (AFAIK). To play with version 1.2, do this from the command line (NOTE: uninstalls rails 2 and installs rails 1.2) gem uninstall rails gem install rails -v 1.2.6 If it still doesn''t work, or you want to play with 2.0 anyway: Run the server (script/server). After it starts, copy and paste what it prints out to the command line into this thread. That may tell us if there''s an error with the booting process -- which is what I suspect. -- Travis --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Mark Wilden wrote:> > Do you have a Web server (WEBrick, mongrel, etc.) running at home? > > ///arkHeehee. I forgot to say I''m using InstantRails, so I''m actually using Mongrel. I''m using IR because I couldn''t install rails as a gem from the CMD for some reason. I''m going to give this another try when I get home and then I''ll report whatever result I get. Thanks for replying, everyone! --- Lilly -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---