Jorge, I've been having the same issue recently, though I didn't the first time I installed arches. However, I'm using Ubuntu, so the following info might be useful to you conceptually, but probably not all of the specifics.
For me, if I tried to go to the homepage for the first time in a browser session (at least I believe that was the main condition) I would first get an internal error message, but if I refreshed the page it would work. When I looked at the apache error log (/var/log/apache2/error.log) it showed the same error as you have found *ValueError: Unable to configure handler 'file': [Errno 13] Permission denied: '/srv/arches/myapp/myapp/logs/application.txt'* I was also having permission issues with the myapp/uploads/files directory when I was trying to upload files as Information Resources. I'm pretty sure both issues are caused by apache trying to edit directories that it does not have full permission to edit. What *seems* to solve the problem *in an ubuntu environment* is to add the problem files/directories to the www-data user group, which is apparently apache's group. So *sudo chgrp www-data application.txt* and *sudo chgrp www-data uploads -R* seem to fix the problem so far for me... -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
