Hi I have a problem when I use the command ruby script/server in some of applications , the server dose not working end exiting before I close it! to know what I mean please see the attachment! How I deal with a server to see my pages? Attachments: http://www.ruby-forum.com/attachment/3211/problem_with_server.gif -- 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 27 Jan 2009, at 12:25, Basma Basma wrote:> > > > > > Hi > I have a problem when I use the command > ruby script/server > in some of applications , the server dose not working end exiting > before > I close it! > >Sounds like a syntax error in database.yml. Fred> to know what I mean please > see the attachment! > > > How I deal with a server to see my pages? > > Attachments: > http://www.ruby-forum.com/attachment/3211/problem_with_server.gif > > -- > 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 -~----------~----~----~----~------~----~------~--~---
Frederick Cheung wrote:> On 27 Jan 2009, at 12:25, Basma Basma wrote: > >> I close it! >> >> > Sounds like a syntax error in database.yml. > > Fredthanks Fred for replying. but what kind of errors? I wrote in database.yml development: adapter: mysql database: web host: localhost username: root password: test: adapter: mysql database: web host: localhost username: root password: production: adapter: mysql database: web host: localhost username: root password: -- 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 27 Jan 2009, at 14:48, Basma Basma wrote:> > Frederick Cheung wrote: >> On 27 Jan 2009, at 12:25, Basma Basma wrote: >> >>> I close it! >>> >>> >> Sounds like a syntax error in database.yml. >> >> Fred > > thanks Fred for replying. > but what kind of errors? > I wrote in database.yml >According to the error message there''s a line with timeout: 5000 on it Also indentation in yaml is significant. Fred> > development: > adapter: mysql > database: web > host: localhost > username: root > password: > > test: > adapter: mysql > database: web > host: localhost > username: root > password: > > production: > adapter: mysql > database: web > host: localhost > username: root > password: > > > -- > 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 -~----------~----~----~----~------~----~------~--~---
Frederick Cheung wrote:> On 27 Jan 2009, at 14:48, Basma Basma wrote: > >> >> thanks Fred for replying. >> but what kind of errors? >> I wrote in database.yml >> > According to the error message there''s a line with timeout: 5000 on it > Also indentation in yaml is significant. > > Fredyes there was a line with timeout: 5000 then I remove it , to see if the error from it or not! and still same error! but what do you mean about "Also indentation in yaml is significant"? should be without indentation? thanks.. -- 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 27 Jan 2009, at 15:10, Basma Basma wrote:> > Frederick Cheung wrote: >> On 27 Jan 2009, at 14:48, Basma Basma wrote: >> >>> >>> thanks Fred for replying. >>> but what kind of errors? >>> I wrote in database.yml >>> >> According to the error message there''s a line with timeout: 5000 on >> it >> Also indentation in yaml is significant. >> >> Fred > > > yes there was a line with timeout: 5000 > then I remove it , to see if the error from it or not! > and still same error! > > > but what do you mean about "Also indentation in yaml is significant"? > should be without indentation?That means that what you pasted: development: adapter: mysql database: web host: localhost username: root password: is very different from development: adapter: mysql database: web host: localhost username: root password: Also have all three environments set to use the same database is a very bad thing (unless you want all of them to get wiped everytime you run the unit tests). Fred> > > thanks.. > -- > 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 -~----------~----~----~----~------~----~------~--~---
many thanks to you Fred :) it''s working now. -- 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 -~----------~----~----~----~------~----~------~--~---
Hi I have a problem when I use the command ruby script/server in some of applications , the server dose not working to know what I mean please see the attachment! How I deal with a server to see my pages Attachments: http://www.ruby-forum.com/attachment/3225/problem.gif -- 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 -~----------~----~----~----~------~----~------~--~---
Hi, The error message is quite explicit: - either install Rails 1.2.6.0 (copy/paste the provided command line...) - or ask your environment to use your current rails version (look at environment.rb as explained) Jej> Hi > I have a problem when I use the command > ruby script/server > in some of applications , the server dose not working > > to know what I mean please > see the attachment! > > How I deal with a server to see my pages > > Attachments:http://www.ruby-forum.com/attachment/3225/problem.gif > > -- > Posted viahttp://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 -~----------~----~----~----~------~----~------~--~---
Hi, How change rails version ? -- 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 -~----------~----~----~----~------~----~------~--~---