user104292
user104292

Reputation: 3

No SQLite write access for django-apache-wsgi app

The debug screen says that django does not have write access to the db.

Upvotes: 0

Views: 1185

Answers (1)

Alex Martelli
Alex Martelli

Reputation: 882023

Presumably the userid under which your app is running doesn't have write permissions on the file in which you've saved your DB, or there are permission issues with some directory on the path. So what does ls -l or -ld (or Windows equivalent) say about all relevant permissions, and what userid is the webapp running under?

Upvotes: 1

Related Questions