1👍
✅
This isn’t a python error; it’s an issue with your filesystem. You need to check that all read-write permissions are available.
$ chown Username /path/to/dbfile.db
1👍
cd to the folder with that database and do
chown www-data:www-data . (apache2 or httpd for non-debian)
chown www-data:www-data <database>
chmod 700 <database>
chmod 755 .
- [Answered ]-Proper way to annotate favorited items
- [Answered ]-Angular -Js $http.post not working in django
- [Answered ]-How to display the post user created with {% if user.is_authenticated == post.author %}?
- [Answered ]-Django haystack or sphinx for simple search?
- [Answered ]-Getting how the view was called with HttpRedirect in the next view
0👍
be carefull with changing stuff like @Filip said:
> django.core.exceptions.ImproperlyConfigured:
> 'django.db.backends.sqlite3' isn't an available database backend. Try
> using 'django.db.backends.XXX', where XXX is one of:
> 'mysql', 'oracle', 'postgresql'
👤Maks
- [Answered ]-How to calculate percentage with facility in Django 1.7
- [Answered ]-Django redirect appends the url to the previous one
Source:stackexchange.com