Tagged Questions
is Django's command-line utility for administrative tasks.
5
votes
3answers
128 views
Are there any purposes for the management folder in Django other than commands?
Why are management commands not in their own app-level folder? Are there other items which can be added to the management directory or is this structure purely vestigial?
3
votes
2answers
190 views
sending django signals from django-admin command?
I have an unsual problem.
In my django application I use signals to send emails.
All of signals work except for the one fired from django-admin command - django.core.management.base.NoArgsCommand ...
3
votes
1answer
369 views
How does one use Django custom management command option?
The Django doc tell me how to add an option to my django cusomt management command, via an example:
from optparse import make_option
class Command(BaseCommand):
option_list = ...
2
votes
1answer
218 views
Migrating django admin auth.groups and users to a new database using fixtures
Here's the scenario:
I'm using django's admin interface and I would like to be able to load users and groups via fixtures (if this is possible.) I'm able to dump users/groups like so:
manage.py ...
2
votes
2answers
327 views
Django makemessages for apps in site-packages
How can I collect translation strings outside of my project folder using Django's built-in makemessages facility? The management command makemessages is very convenient and I'd like to use it for ...
2
votes
2answers
588 views
Django not finding apps in virtualenv when using manage.py syncdb
My problem is in getting manage.py syncdb to run within a virtualenv.
It was working fine at one point, but seems to have broken sometime around when I installed South and updated pip and distribute.
...
2
votes
3answers
235 views
Dump data from django Feincms
I'm using feincms in a django project and I want to use manage.py dumpdata but I get nothing:
python manage.py dumpdata feincms
[]
1
vote
1answer
24 views
When to run and interrupt a django management command
I have a custom django-command that reads and RSS, looks for new feeds and, if any new feed is found, I push it (pusher.com) to my webapp hosted in Heroku (heroku.com). This checking needs to be done ...
1
vote
2answers
92 views
manage.py: cannot connect to X server
I have used PyQt4.QtWebkit to crawl the web page in my django application.In the production environment that module doesn't work to crawl it.it throws the error "manage.py: cannot connect to X server"
...
1
vote
3answers
81 views
Django: how to pass individual setting to manage.py
I'm looking for a way to override/define some individual django setting from command line without additional settings files.
What I need right now is to set the DEBUG setting or logging level each ...
1
vote
1answer
355 views
django.core.exceptions.ImproperlyConfigured: Error loading psycopg module: No module named psycopg
Presently, I'm attempting to configure Django for use on a project, and am encountering a persistent error when I try to run python manage.py syncdb.
File "/x/x/x/x/x/x/base.py", line 23, in ?
...
1
vote
1answer
71 views
running django development server opens manage.py in text editor
I've tried searching for why this keeps happening as I think I've seen others mention this problem.
Whenever I run manage.py runserver from the command line, it just opens the manage.py file from ...
1
vote
2answers
103 views
Django: Management Command Disappeared and I can't test the script
I had a command all set up and working, then I set up a Cron job for it and now it disappeared from manage.py help's list of all available commands.
It is under
...
1
vote
4answers
458 views
How do I preload imports into Django's manage.py shell command?
When I run manage.py shell on my Django project to take a peek at something there are common imports that I always want to run at the start of the shell (e.g. I always want to import my model files.) ...
1
vote
2answers
214 views
Running a plain python interpreter in presense of ipython with manage.py shell
I have ipython installed, I want to run a plain python interpreter instead with manage.py shell.
So I try,
python2.5 manage.py shell --plain
Which gave me an error, and text which suggest that ...
0
votes
1answer
23 views
Django manage.py - Creating auth_permission and django_content_type tables
I am unable to use syncdb because my app uses some MySQL views. I have run manage.py sqlall <app>, but this does not output the SQL for django_content_type table or the auth_permission tables. ...
0
votes
0answers
20 views
django: occasional runserver reload bug
I'm testing my django project on Windows XP:
python manage.py runserver
I leave it running and when I save a source code file, it'll reload everything - perfect!
However, once in a while, it will ...
0
votes
1answer
21 views
overriding def queryset doesn't work when pulling foreignkey items?
I've got a modeladmin like this
class StudentAdmin(admin.ModelAdmin):
date_hierarchy = 'dob'
def queryset(self, request):
queryset = Student.objects.filter(created_by=request.user)
...
0
votes
1answer
220 views
How to run south manage.py commands from PyCharm?
Is it possible to run the manage.py south commands from PyCharm?
If it is possible, how can it be done?
I can't find the documentation about it.
0
votes
1answer
111 views
Django-CMS, how to resolve a named apphook URL from a management command?
I've got a management command which sends email. In this email, I'd like to include a URL to a signup form, which is an apphook module in the CMS.
How can I resolve the URL to that path?
From the ...
0
votes
3answers
260 views
Django: can't set password for superuser on command line
In the Django tutorial, I'm at the part that says "You'll see a message for each database table it creates, and you'll get a prompt asking you if you'd like to create a superuser account for the ...
0
votes
1answer
288 views
manage.py sql command for django models - Django
just wondering... but is it possible to generate SQL commands for django's models?
e.g. the session model
python manage.py sql django
Any ideas?
0
votes
4answers
278 views
Django manage.py runserver never finishes “validating models”
I am trying to follow the django tutorial. I am running on windows+eclipse.
When I run python manage.py runserver I get the message Validating models... and afterwards see no progress...
Am I doing ...
0
votes
1answer
190 views
manage.py syncdb error, postgres_psycopg2
I'm trying to install a shopping cart plugin for django but having a problem when I run manage.py syncdb.
When run, it installs 4 tables, then I'm getting the following error message:
File
...
0
votes
2answers
216 views
Where does django dev server (manage.py runserver) get its path from?
I recently moved a django app from c:\Users\user\django-projects\foo\foobar to c:\Python25\Lib\site-packages\foo\foobar (which is on the python path). I started a new app in the django-projects ...
0
votes
1answer
88 views
Non local connections for django project server
I ran the command python manage.py runserver 0.0.0.0:8000
It started the server up, but when I navigate to http://myipaddress:8000, my webbroswer doesnt connect. I also tried with my iphone safari ...
0
votes
1answer
469 views
custom django-admin commands - AttributeError: 'Command' object has no attribute 'stdout'
Following the example of writing a custom django-admin command here, I've created the following custom command:
from django.core.management.base import BaseCommand, CommandError
class ...
0
votes
1answer
154 views
Django's manage.py shell won't indent
I seem to have run into a strange bug or more likely some setting I am unfamiliar with on my system that is not allowing me to tab when I am in Django's shell (python manage.py shell is how I run it).
...