0
votes
1answer
26 views

Django admin particular data for particular user

I am using django admin site to let people manage database easier. For some reason, I want to hide some data from some user. Let's say I have a model named Book and there are a lot of books in ...
1
vote
1answer
24 views

django group permission

I add a permission with name = 'can show distribute page', codename='can_show_distribute_page', contenttype='user'. I add two groups, named 'manager' and 'normal', one has the permission ...
2
votes
0answers
31 views

Django: user.has_perm always true and user is not superuser. Why?

I assigned a permission of a user in my Django 1.5 app. When I list all user permissions with In [1]: user.get_all_permissions() Out[1]: set([u'profile.change_profile']) I can see one permission ...
2
votes
1answer
67 views

Django 1.5: Understanding of AbstractBaseUser and permissions

I created an user app MyUser which is an extension of AbstractBaseUser. I was under the impression that the model MyUser will replace the standard Auth.User, as long as it is mentioned in settings.py ...
0
votes
2answers
48 views

Django private file upload

I would like admin users to be able to attach private arbitrary files related to my models a la Share Point. As Django is primarily used as a publication platform, all of the examples I've found so ...
0
votes
1answer
22 views

Ubuntu Log creation permission issues after Fabric build

My Django app is built on a VM Ubuntu instance via a Fabric script ran from my local dev machine as root with sudo. The Fabric script sets up a folder in: /var/log/FOLDERNAME and the app is set to ...
1
vote
0answers
43 views

How to prevent user from becoming superuser

I have some managers in my project, they are "staff", so have access to admin panel. Also, they can add and change users. So, I want to prevent them from changing their profile to "superuser". I also ...
0
votes
1answer
18 views

After adding a permission, why do I need to re-query for the Django user to see the added permission?

In the following Django manage.py shell session, why don't I see the permission that I added to my user object until I do a new query for that user? In [16]: john = ...
1
vote
0answers
89 views

How can I call a .sh script from Django, considering permissions?

Using, Django I would like to be able to pull changes from a github repository using a view to a development server for testing. This is on the ubuntu operating system, and I am using the Apache ...
0
votes
1answer
72 views

Django custom decorator for custom permission

There is a Project model with a ManyToMany relation to User model, using a join table. If a user is not member of a project (not in the join table), I want to prevent the user from accessing a view ...
1
vote
2answers
201 views

Django Error (13, 'Permission denied')

I'm been working on this Photo Organizer and Sharing App Part I at http://lightbird.net/dbe/photo.html. I'm trying to generate a thumbnail and when I do . I get this error. I have Windows Vista. ...
0
votes
1answer
41 views

Permissions in unit testing

I wanted to introduce unit testing to a Django application. Although I started failing on the first thing I wanted to test. Can you tell me what I am doing wrong? The view I want to test ...
0
votes
0answers
27 views

How to user django permissions with two applications inside one project

I have two Django applications inside one project: tickets solver In solver app is model that extends Django User model. In tickets app is Ticket model. I need to make connection: If Solver has ...
1
vote
0answers
67 views

Whats the correct way to programmatically add permissions to a group

I want to add (already existing, defined via permissions in the meta tag) permissions to groups and looking for the correct place to do so. I have to assure that after the sync_db command all groups ...
0
votes
1answer
77 views

Apache/WSGI process dying

I recently have changed the server for some Django/Python sites and immediately I got into trouble. My Apache instance or the WSGI daemon simply dies! No logs, no warnings or errors. I have to restart ...
0
votes
1answer
135 views

Django Auth, Users and Permissions

I have a Organization and Employee models class Organization(models.Model): is_active = models.BooleanField() name = models.CharField(u'Name', max_length = 255) ... class ...
0
votes
0answers
46 views

Permission systems

I have objects in my system with relations to owners and collaborators and now I need to add permissions on viewing these objects. Currently if the user is the owner or listed as a collaborator they ...
0
votes
1answer
88 views

Better to use 3rd Party Row-Level Permission App or to Filter Query Results in a Django View?

I am writing a Django app that involves the creation of documents. I have a few requirements: Check to see if the user is able to view any documents at all. If the user is allowed to view documents, ...
1
vote
0answers
242 views

uwsgi: connection refused when running from startup script

I want to run a django site on amazon ec2 (ubuntu) with nginx and uwsgi. I have followed a basic setup as described here. When I start uwsgi from the command line (as ubuntu user), everything works ...
0
votes
1answer
49 views

New users are not created in auth_permissions

I'm a newbie in Python and Django, so please bear with me. The project I'm hacking on was not made by me so I'm fumbling in the dark. When new users are created they do not have permission to things ...
1
vote
1answer
44 views

django permissions error?

After trying to add a model entry using the admin interface, I get the following error: [Errno 13] Permission denied: '/dev/website/app/media/pictures/2.1.0_screenshot.jpg' The thing is, I've ...
1
vote
0answers
112 views

should Django groups and permissions be hard-coded or bootstrapped?

I'm building an app that assumes the existence of certain groups and permissions for its workflow. For example, a "member" can log into the app and view and edit their personal data, but cannot see ...
1
vote
1answer
328 views

Best practices for linux user permissions to run web application as?

I see a lot of different advice online as to where to serve your web application from, what user to run it as, etc. For instance, I've seen it served from: /var/www/site, /srv/www/site, ...
0
votes
1answer
100 views

permission_required_or_403 decorator on an 'Add or Edit'?

I have a typical django view setup for adding a new or editing a current 'book' model (through forms). This is of the nature: def bookedit(request, bookid=None): if bookid: book = ...
0
votes
0answers
81 views

Read/Write permission for a program run with subprocess?

I've got a Django app, which calls a program using subprocess.call(). This program creates a couple of files, which I then use back in my app. The problem is the program doesn't seem to have ...
0
votes
2answers
191 views

Apache Permission for a bat file w/ Django

I have seen a lot of similar questions, but still i am failing. I have win XP, Apache 2.2, Django 1.4, Python 2.7 and mod_wsgi 3.3. All i am trying to do is when you hit the page the bat file ...
1
vote
0answers
68 views

In django-rest-framework, how can I have a resource that is only editable by the user that created it?

If I have this: class Image(models.Model): user = models.ForeignKey(User) how can I write a resource that will allow GET from anyone, but PUT only when request.user is the same as image.user?
1
vote
3answers
990 views

Errno 13 Permission denied: media folder with localhost

I get a message [Errno 13] Permission denied: u'/home/.../...jpg' when I try to upload a file in django. But the problem appears only when I try it with localhost/. When I and running or ...
0
votes
1answer
46 views

Displaying a user's individual and group views simultaneously in Django

I'm having trouble displaying a user's individual and group entries simultaneously. My group model is written as such: class Group(models.Model): name = models.CharField(max_length=100) ...
0
votes
0answers
95 views

Django: Allowing users to arrange themselves into groups with admin features

I'm building a calendar application using Django and I need some help with user permissions. I gave each user his/her own calendar by first writing a manager model for each entry - so my models look ...
0
votes
0answers
971 views

Django/mod_wsgi OSError: [Errno 13] Permission denied: 'static' when DEBUG = OFF

I have a Django 1.4 application on a Centos 6.2 server (running apache, mysql, php) using mod_wsgi with my project deployed in a virtual env. The application itself is one I've been using for several ...
0
votes
1answer
329 views

django permission groups

I'm creating a my own custom User model by extending the User model provided by the framework. I also created several model classes and included permissions as per below: class Meta: permissions ...
0
votes
1answer
203 views

Django, using/designing a row-level permission system when we have different roles [closed]

I'm developing a Learning Management System. The system has several Actors, like Student, Tutors, Admin, Dean etc. Now, I need a permission system that can handle different Roles (Students can add ...
1
vote
2answers
98 views

Getting “Permission denied” page in the admin, while user has permission

I've got some issue with user permissions in Django. I added some permissions for the Magasin model as shown below: add_magasin=Permission.objects.get(codename="add_magasin") ...
0
votes
1answer
465 views

Django, permission error :OSError at /upload/ [Errno 13] Permission denied:

I get this error when i try to upload an image: OSError at /upload/ [Errno 13] Permission denied: '/var/www/p/p/media/imgupload/img.png' my virtualhost: <VirtualHost *:80> ServerAdmin ...
0
votes
1answer
2k views

mysql error : ERROR 1018 (HY000): Can't read dir of '.' (errno: 13)

when i try to view the databases in mysql i get this error: ERROR 1018 (HY000): Can't read dir of '.' (errno: 13) And that stops my app from displaying... My django debugger says: (2002, "Can't ...
2
votes
1answer
162 views

Object level cascading permission in Django

Projects such as Django-guardian and django-permissions enables you to have object level permissions. However, if two objects are related to each other by a parent-child relationship, is there any way ...
1
vote
2answers
325 views

Objects with permissions assigned by django-guardian not visible in admin

I'm using django-guardian in order to manage per object permission. For a given user I give permission all permission on one object: joe = User.objects.get(username="joe") mytask = ...
0
votes
2answers
61 views

Permission on specific instances of a model

I've got a CustomUser model with an additional field region and other models with this same field. How can I allow an instance of CustomUser to add/delete/view instances of the other models (give all ...
1
vote
3answers
682 views

DatabaseError unable to open database file

My sqlite db file is this: unable to open database file i chowned all folders until my dbfile to root. but i am still getting this error. but i remember that while creating my django project on ...
2
votes
2answers
242 views

django-guardian example source code

Can anyone suggest a good open source app that uses django-guardian? I'm not having trouble understanding the API, but I'd love to see an example to get a feel for implementation best practice ...
0
votes
1answer
89 views

Differences between various permission levels in Django

As far as I know, there are 3 permission levels available to use in django (whether by django itself or by using 3rd party apps). 1) Model-based permission 2) Object based permission 3) Row-based ...
1
vote
0answers
161 views

Using Generic foreign key to assign per object permissions in Django

I wanted a simple way of relating multiple users ta an account in Django. I think I found a solution and it seems to be working. I've run into some more elaborate versions of what I am trying now. I ...
0
votes
1answer
67 views

assigning permission to flatpages

I need to assign a permission to flat pages like about-us . I have no models for it , I simply installed flatpages and accessed it from url.py. There are options like django-guardian and ...
0
votes
1answer
69 views

checking permission dynamically

class Task(models.Model): class Meta: permissions = ( ("view_task", "Can see available tasks"), ("change_task_status", "Can change the status of tasks"), ...
2
votes
1answer
644 views

Extending Django User for Permission

I just want List user to be under permission , so i just made one custom model like below from django.db import models from django.contrib.auth.models import Permission,User class ...
2
votes
1answer
124 views

Where should I put these custom-permissions in django?

Django documentation shows how to put your own permissions to YourModel.Meta-class. I'd like to have some permissions that don't have anything to do with a certain model. They would just ...
3
votes
1answer
368 views

When to programmatically create custom Django permissions?

The permission/authentication documentation for Django 1.4 provides the following snippet for creating custom permissions programmatically: Edit: (I would like to employ this for permissions that are ...
3
votes
1answer
136 views

Where to control permission-style viewing in Django? In the url (via generic views), template, or view?

I have a basic permission system where I am pretty much hardcoding permissions based on user.profile.user_type, where user.profile is equivalent to user.get_profile(). For example, if a user_type is, ...
1
vote
1answer
67 views

Limiting user to single app

I have a Django project with several apps. I'd like to restrict a particular user's access to only one specific app and at the time of the user's creation, i.e. without having to say modify every ...

1 2 3