I've launched two apps under hosting rails without problem. The tutorials have been great. Launching the third has got me in some trouble.
I think it's an .htaccess problem, but can't prove it. I have an app called rounds and an app called clinicresearch. Is this how the .htaccess file should look?
#Apache options
#AddHandler fastcgi-script .fcgi
AddHandler cgi-script .cgi
Options +FollowSymLinks +ExecCGI
# If you don't want Rails to look in certain directories,
# use the following rewrite rules so that Apache won't rewrite certain requests
#
# Example:
RewriteCond %{REQUEST_URI} ^/rounds.*
RewriteCond %{REQUEST_URI} ^/clinicresearch.*
RewriteRule .* - [L]
####
Thanks in advance,
Bryce