I looked into the apache error log, and here's what it said:
ActionView::Template::Error (application.css isn't precompiled):
2: <html>
3: <head>
4: <title><%= title %></title>
5: <%= stylesheet_link_tag "application", media: 'all' %>
6: <%= javascript_include_tag "application" %>
7: <%= csrf_meta_tags %>
8: <%= render 'layouts/shim' %>
app/views/layouts/application.html.erb:5:in
`_app_views_layouts_application_html_erb__1896008356434155007_26705700'
On May 17, 7:49 am, Hongli Lai <
hongli...@gmail.com> wrote:
> When something goes wrong, always check the following log files:
> The apache global error log file. The global one, not the per-vhost one.
> The rails app log file.
>
> There should be more error information in one of those places.
>
> Sent from my Android phone.
> Op 17 mei 2012 16:40 schreef "EastSideDev" <
eastside...@gmail.com> het
> volgende:
>
>
>
>
>
>
>
> > Server setup: Centos 6.2, ruby-1.9.3-p125, Rails 3.2.3, Passenger
> > Local setup: MAC, ruby-1.9.3-p125, Rails 3.2.3
>
> > I use Rubymine as my development IDE, and when I uploaded the
> > application, I verified that the files were uploaded to the right
> > directories on the server, and that httpd.conf is configured properly
> > for passenger:
> > <VirtualHost *:80>
> > ServerName
dev.myappserver.com
> > DocumentRoot /home/dev/public
> > <Directory /home/dev/public>
> > Allow from all
> > Options -MultiViews
> > </Directory>
> > </VirtualHost>
>
> > When I do:
http://dev.myappserver.com
> > I get the error message: We're sorry, but something went wrong
>
> > Locally, it runs fine (rails s, and thenhttp://localhost:3000)