[EDIT: The bug was not in the permissions. I had not provided a full path to the db in settings.py (using SQLITE3), so uwsgi could not find it. Thanks to @spicavigo for the guidance!]

I have a simple Django app running on a Linux (Ubuntu) server, served by nginx and uwsgi. The application takes an uploaded document from the user and runs a local executable through subprocess.call, to convert the document from pdf to text.

subprocess.call(['pdftotext', pdffilepath], shell = True)

This subprocess call is not working, and I get an error related to the permissions on the folder where the uploaded document is stored ('media/').

I've set the owner of the path to the app, and the media folder, as www-data, which is also the user for nginx and uwsgi. I've also set all of these to ubuntu. Still no luck. The app works fine under the Django server (python manage.py runserver).

Thoughts on what I need to do or where I went wrong in my settings?

link|improve this question
Hey Ari, could you do a ls -ltr of the folder that contains media/ and paste it here – spicavigo Feb 21 at 18:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.