do this from the root of the app:
> ls -al public/javascripts
and send the results.
cheers,
steven bristol
It looks like root owns all the files and so when you run the app, it
tries to regenerate the less_routes.js file, but isn't allowed to do
that because it can't overwrite the file owned by root.
It not a good idea to have all the files owned by root, nor run the
app as root. Here's how to fix: Assuming your user account name is
"chad" and the chad's main group name is also "chad" run the following
from the root of the app:
> sudo chown -R chad:chad *
Now you should be able to run the app as chad and the js file will be writable.
cheers,
steve
Probably the group name is also ruby. If you do
> ls -al ~
you should see the user name and the group name for the files there.
Just use whatever it says.
Apache will run properly, don't worry about it, it is properly
configured. You probably don't need to delete everything, most likely
changing the ownership of the app dirs/files will fix the problem.
cheers,
steve
If you run it with phusion passenger behind apache, it will be port 80
by default.
steve