Hello All, I installed Ruby on Windows (using rubyinstaller-1.9.1-p378.exe from here - http://rubyforge.org/frs/?group_id=167). Then I ran gem install rails. I was following instructions here -http://oreilly.com/pub/a/ruby/ archive/rails.html?page=1 to create my first app. I was able to start the server and see the first page. When I click on "About you application''s environment" link, I get the following message. We''re sorry, but something went wrong. We''ve been notified about this issue and we''ll take a look at it shortly. I get the same message when I generate a new controller and try to access that on the URL. Any idea what is wrong? Thank you Sangeetha -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Look in your log file (your_app/log/*.log) - the error will be detailed in there. Also, it seems from the error message you''re running in production mode, you should really switch to development then you''d see the full error message in your browser. Cheers, Andy -- Andy Jeffries http://andyjeffries.co.uk/ #rubyonrails #mysql #jquery Registered address: 64 Sish Lane, Stevenage, Herts, SG1 3LS Company number: 5452840 On 16 June 2010 21:48, Sangeetha <devsangeech-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hello All, > > I installed Ruby on Windows (using rubyinstaller-1.9.1-p378.exe from > here - http://rubyforge.org/frs/?group_id=167). > Then I ran gem install rails. > > I was following instructions here -http://oreilly.com/pub/a/ruby/ > archive/rails.html?page=1 to create my first app. > I was able to start the server and see the first page. > > When I click on "About you application''s environment" link, I get the > following message. > > We''re sorry, but something went wrong. We''ve been notified about this > issue and we''ll take a look at it shortly. > > I get the same message when I generate a new controller and try to > access that on the URL. > > Any idea what is wrong? > > Thank you > Sangeetha > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 16 June 2010 21:48, Sangeetha <devsangeech-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hello All, > > I installed Ruby on Windows (using rubyinstaller-1.9.1-p378.exe from > here - http://rubyforge.org/frs/?group_id=167). > Then I ran gem install rails. > > I was following instructions here -http://oreilly.com/pub/a/ruby/ > archive/rails.html?page=1 to create my first app. > I was able to start the server and see the first page.That tutorial has been ''updated for rails 1.2'' and is dated 2005, it must be hopelessly out of date. Have a look at the Rails Guides (google it) to get you started and http://www.railstutorial.org/ for a more in depth tutorial.> > When I click on "About you application''s environment" link, I get the > following message. > > We''re sorry, but something went wrong. We''ve been notified about this > issue and we''ll take a look at it shortly. > > I get the same message when I generate a new controller and try to > access that on the URL.Have a look in log/development.log for more information on what went wrong. Colin -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
check yours db table does that exists ? On Thu, Jun 17, 2010 at 1:31 PM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 16 June 2010 21:48, Sangeetha <devsangeech-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > Hello All, > > > > I installed Ruby on Windows (using rubyinstaller-1.9.1-p378.exe from > > here - http://rubyforge.org/frs/?group_id=167). > > Then I ran gem install rails. > > > > I was following instructions here -http://oreilly.com/pub/a/ruby/ > > archive/rails.html?page=1 to create my first app. > > I was able to start the server and see the first page. > > That tutorial has been ''updated for rails 1.2'' and is dated 2005, it > must be hopelessly out of date. Have a look at the Rails Guides > (google it) to get you started and http://www.railstutorial.org/ for a > more in depth tutorial. > > > > > When I click on "About you application''s environment" link, I get the > > following message. > > > > We''re sorry, but something went wrong. We''ve been notified about this > > issue and we''ll take a look at it shortly. > > > > I get the same message when I generate a new controller and try to > > access that on the URL. > > Have a look in log/development.log for more information on what went wrong. > > Colin > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- Thanks: Rajeev sharma -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
as long as I understood, this is your very first app right? so, maybe some really basic questions will help... what DB are you using? and... do you have de driver gem for that DB? I am not sure if I`m right, but I could simulate your error, and look at the output, on the server terminal window: *!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.* maybe just installing that gem before creating your application, or installing it after and running "rake db:create" to create your application database would help... Sempre Alerta Para Servir, Lucas Franceschi Equipe de Programação (Automação) SGI Sistemas (049) 9922-3360 On Thu, Jun 17, 2010 at 7:07 AM, kannav rajeev <rajeevsharma86-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> check yours db table does that exists ? > > > On Thu, Jun 17, 2010 at 1:31 PM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> On 16 June 2010 21:48, Sangeetha <devsangeech-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> > Hello All, >> > >> > I installed Ruby on Windows (using rubyinstaller-1.9.1-p378.exe from >> > here - http://rubyforge.org/frs/?group_id=167). >> > Then I ran gem install rails. >> > >> > I was following instructions here -http://oreilly.com/pub/a/ruby/ >> > archive/rails.html?page=1 to create my first app. >> > I was able to start the server and see the first page. >> >> That tutorial has been ''updated for rails 1.2'' and is dated 2005, it >> must be hopelessly out of date. Have a look at the Rails Guides >> (google it) to get you started and http://www.railstutorial.org/ for a >> more in depth tutorial. >> >> > >> > When I click on "About you application''s environment" link, I get the >> > following message. >> > >> > We''re sorry, but something went wrong. We''ve been notified about this >> > issue and we''ll take a look at it shortly. >> > >> > I get the same message when I generate a new controller and try to >> > access that on the URL. >> >> Have a look in log/development.log for more information on what went >> wrong. >> >> Colin >> >> -- >> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> >> . >> For more options, visit this group at >> http://groups.google.com/group/rubyonrails-talk?hl=en. >> >> > > > -- > Thanks: > Rajeev sharma > > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.
I had the same issue and sold. go to the mysql lib folder.copy libmysql.dll file and paste in to bin folder in ruby installation. restart your webrick server. test it. should be work. and let us know. ---sam On Thu, Jun 17, 2010 at 5:53 PM, lucas franceschi <lukas1596-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> as long as I understood, this is your very first app right? > > so, maybe some really basic questions will help... > > what DB are you using? > and... > do you have de driver gem for that DB? > > I am not sure if I`m right, but > I could simulate your error, and look at the output, on the server terminal > window: > > > *!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please > install the mysql gem and try again: gem install mysql.* > > maybe just installing that gem before creating your application, or > installing it after and running "rake db:create" to create your application > database would help... > > > Sempre Alerta Para Servir, > > Lucas Franceschi > Equipe de Programação (Automação) > SGI Sistemas > (049) 9922-3360 > > > > On Thu, Jun 17, 2010 at 7:07 AM, kannav rajeev <rajeevsharma86-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: > >> check yours db table does that exists ? >> >> >> On Thu, Jun 17, 2010 at 1:31 PM, Colin Law <clanlaw-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>wrote: >> >>> On 16 June 2010 21:48, Sangeetha <devsangeech-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> > Hello All, >>> > >>> > I installed Ruby on Windows (using rubyinstaller-1.9.1-p378.exe from >>> > here - http://rubyforge.org/frs/?group_id=167). >>> > Then I ran gem install rails. >>> > >>> > I was following instructions here -http://oreilly.com/pub/a/ruby/ >>> > archive/rails.html?page=1 to create my first app. >>> > I was able to start the server and see the first page. >>> >>> That tutorial has been ''updated for rails 1.2'' and is dated 2005, it >>> must be hopelessly out of date. Have a look at the Rails Guides >>> (google it) to get you started and http://www.railstutorial.org/ for a >>> more in depth tutorial. >>> >>> > >>> > When I click on "About you application''s environment" link, I get the >>> > following message. >>> > >>> > We''re sorry, but something went wrong. We''ve been notified about this >>> > issue and we''ll take a look at it shortly. >>> > >>> > I get the same message when I generate a new controller and try to >>> > access that on the URL. >>> >>> Have a look in log/development.log for more information on what went >>> wrong. >>> >>> Colin >>> >>> -- >>> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to >>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> >>> . >>> For more options, visit this group at >>> http://groups.google.com/group/rubyonrails-talk?hl=en. >>> >>> >> >> >> -- >> Thanks: >> Rajeev sharma >> >> >> -- >> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> >> . >> For more options, visit this group at >> http://groups.google.com/group/rubyonrails-talk?hl=en. >> > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org<rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org> > . > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@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.