I have a new rails app, it works locally, and works on my test server, but doesn't work on the production server. The odd part is that it works in some of the routes, but not others.
I am using active admin and all of the forms I setup behind active_admin logins are working correctly, however all of my public views and the home page keeps showing 500 errors.
The configuration on test and production are nearly identical and even though I have logging setup in my vhost.conf, it's not logging anything in either the application log or the apache log.
I'm assuming this is a permission or gem issue, but can't seem to track down anything causing it.
Edit: Also I should note that all of my assets are serving up correctly when I go them. I can access them directly via URL and they work.
Rails console works as well with all of my objects. I've spent a lot of time on this today and looked through a lot of similar questions with no luck. Any suggestions on how to debug this would be very helpful. Thanks in advance.
Edit: Here is my .conf entry for this:
<VirtualHost *:80>
DocumentRoot /var/www/app_admin/public/
<Directory /var/www/app_admin/public>
AllowOverride all
</Directory>
ServerName www.mydomainname.com
ServerAlias mydomainname.com
ErrorLog /var/log/httpd/app_admin/error.log
CustomLog /var/log/httpd/app_admin/access.log common
</VirtualHost>

$ ls -altrresult from the rails app folder. – Siwei Shen Apr 6 '12 at 22:37