The django-settings tag has no wiki summary.
4
votes
2answers
442 views
Programmatically add URL Patterns in Django?
Is there a way to programmatically add URL Patterns to Django without having to restart the server?
Or is there a way force Django to reprocess/cache URL patterns ( the URLconf )?
4
votes
2answers
160 views
Sys.path modification or more complex issue?
I have problems with importing correctly a module on appengine. My app generally uses django with app-engine-patch, but this part is task queues using only the webapp framework.
I need to import ...
4
votes
2answers
1k views
Django dynamic settings infrastructure and best practices
Django settings includes a list of python variables that are used for a plethora of things from database settings to installed apps. Even many of the reusable apps make some of the settings required.
...
3
votes
1answer
670 views
Bizarre error importing settings in django
I have many projects working in ubuntu with python2.7 and virtualenv/virtualenvwrapper, in my work some developers works with macosx and windows, generally I create the project as usual:
...
3
votes
4answers
113 views
How do I modify DATABASES variable when including local_settings.py from a django settings.py
At the top of settings.py I have:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'dbname',
'USER': 'dbuser',
'PASSWORD': ...
3
votes
1answer
271 views
Is changing SITE_ID dynamically in middleware considered good idea?
(this isn't duplicate of "Changing Django settings variable dynamically based on request for multiple site", as that previous question covers making much more serious reconfiguration at runtime)
I ...
3
votes
2answers
239 views
Django: Obtaining the absolute URL without access to a request object
I have a model like the one below. When an instance is created, I want to send out an e-mail to an interested party:
class TrainStop(models.Model):
name = models.CharField(max_length=32)
...
2
votes
2answers
49 views
Python changing modifying via imported function
I am trying to create a function, that when imported and then called, it will check and modify a tuple. I would like to be able to call this multiple times. However, I just have the function return ...
2
votes
2answers
206 views
Running Django custom manage.py task on Heroku - Importing Issues
I'm trying to run a custom django command as a scheduled task on Heroku. I am able to execute the custom command locally via: python manage.py send_daily_email. (note: I do NOT have any problems with ...
2
votes
1answer
548 views
Django - template context processors - breaking my app
I was trying to set up a template context processor like this article mentions so that I could provide information to every template.
I wrote this function in views.py:
def items_in_cart(request):
...
2
votes
1answer
69 views
In Django, how can I reuse settings.py in a new app outside of the project
--Major edit --
I have a new Django application I am working on.
I have the following directory structure.
Django/
appc
project1
appA
appB
I would like to use the settings.py from ...
2
votes
2answers
358 views
django - nginx+fastcgi --> Unhandled Exception (after upgrade from Django 1.2.4 to Django 1.3)
I just upgraded from django 1.2.4 to 1.3.
I'm using nginx in conjunction with fastcgi and for some reason every time when I access a page I get this error:
Unhandled Exception
An unhandled ...
2
votes
1answer
203 views
DJANGO_SETTINGS_MODULE -specified settings file not loaded?
I'm migrating a Google App Engine application from Django 0.96 to 1.2. In the process, I noted that the settings file I specified in my main handler was not loaded anymore (instead of the 3 specified ...
2
votes
1answer
90 views
Django settings values from a Database table
Is it possible to set the values for the variables in settings.py from a database table?
I'm using endless_pagination and it has a overwrite-able setting
ENDLESS_PAGINATION_PER_PAGE = 10,
I need ...
2
votes
2answers
197 views
Django: Have different initial_data fixtures for different stages (testing v. production)
I have an initial_data fixture that I want to load everytime except for production. I already have different settings file for production and non-production deployments.
Any suggestions on how to ...
2
votes
1answer
657 views
Django Admin has broken CSS link through apache, but works in runserver mode
For some reason, at some point the django administration got broken. The css is missing.
Here are my settings:
MEDIA_ROOT = os.path.normpath(os.path.join(SITE_ROOT, 'media/'))
MEDIA_URL = '/media/'
...
1
vote
1answer
11 views
error in setting up lettuce with django test
I am trying to connect lettuce with standard django test. Lettuce works fine when working on its own. However, when I import Client from django.test.client I get the error:
"Settings cannot be ...
1
vote
1answer
19 views
Django - Unable to override settings.py values from within it
I am trying to override certain settings in Django's settings.py for production. Instead of using the documented approaches, I decided to add an 'if' statement to the end of the settings.py file and ...
1
vote
1answer
32 views
Ways of maintaining separate settings for different environments?
My django project has two environments - development and test. Today I carelessly overwrote the settings.py in test with the one in development. It took me a while to correct the settings in test, ...
1
vote
1answer
67 views
Changing a setting variable from settings.py
I am using Django 1.3 with mod_wsgi
In my settings.py
DISABLE_SYSTEM = False
DISABLE_USER_INTERFACE = False
MIDDLEWARE_CLASSES = [
'django.middleware.common.CommonMiddleware',
...
1
vote
2answers
38 views
Django CACHE_BACKEND Error
So Im running into this CACHE error when I try to runserver or syncdb.
Here is the traceback: https://gist.github.com/1538051
I tried inserting this into the settings.py file:
CACHE_BACKEND = {
...
1
vote
1answer
32 views
Bypass SESSION_SAVE_ON_EVERY_REQUEST for AJAX call, or better solution
I have a private site that requires login for all pages. When a user goes to edit a record, I don't want to lock the record. I want to keep the record available for others. I devised a system using ...
1
vote
2answers
98 views
Heroku Django Celery: NameError: name 'DATABASES' is not defined
I am following along this tutorial to get celery and django running on heroku.
However, I get this error in my logs when I put in the specified code for the worker:
2011-12-22T05:31:56+00:00 ...
1
vote
3answers
87 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
131 views
Custom Django 404 page and Django debug page
I am deploying a Django webpage and I love the Django Debug 404 page and and the Django page when there is a python error. However these aren't appropriate for a webpage that is going online. So I ...
1
vote
2answers
129 views
Static media fails to load in Django
My settings.py contains the following configuration parameters.
STATIC_ROOT = ''
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
...
1
vote
3answers
138 views
Customised settings files using django-admin.py startproject?
Whenever you run the command django-admin.py startproject, django automatically loads up a default settings file.
Is it possible to enhance the way this works so that it loads up your customized ...
1
vote
1answer
331 views
Implementation of e-mail verification in Django
I have created a Django app. I have a registration page(simple HTML form) in the app,and it has an e-mail field while registering. Now i wanted to implement an email verification when the user ...
1
vote
3answers
191 views
installing snippets
How do I install snippets in django? (specifically this)
I have the file /{project}/snippets/EnforceLoginMiddleware.py and I have tried any number of permutations inside MIDDLEWARE_CLASSES to load ...
1
vote
1answer
412 views
How do you fix the following Django Error: “Type: IOError” “Value: [Errno 13] Permission denied”
I am following a Django Tutorial where you are required to construct some image thumbnails once an image is saved in admin. I am also using Python's tempfile module to save a temporary file name.
...
1
vote
1answer
102 views
Import all modules in django
In django is there way to import all modules
ex: from project.models import *
ex: from project1.models import *
Can this be done with one statement
1
vote
1answer
428 views
Django multilanguage support
Using django if a text is stored in French or Hindi.How will this be stored and retrieved in a text box field
Models.py
class Details(models.Model):
title = models.CharField(max_length ...
0
votes
0answers
17 views
is django APPEND_SLASH is broken in 1.4-alpha-1? [closed]
Hi I had a perfectly working APPEND_SLASH = True in the project settings.py file and moving from 1.3 to 1.4-alpha-1 seems to have broken this feature.
Now, anyone has noticed this?
Or, anything has ...
0
votes
1answer
27 views
Accessing request.META.SERVER_NAME in template
I call a template like this from my view:
return render_to_response('mytemplate.html')context_instance=RequestContext(request))
I'm trying to access the hostname of my current server (in this case, ...
0
votes
1answer
24 views
How to pass a callable defined in my django app to a third-party django app via my project settings.py?
I am trying to pass a function defined in my views.py, by specifying a specific setting in settings.py, to a third-party django app used by my project like the following:
...
0
votes
1answer
36 views
How to customize email backend for EmailMultiAlternatives in Django
Background :-
My email Backend is something like this
EMAIL_HOST ='smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'feedback@example.com'
EMAIL_HOST_PASSWORD = 'XXX'
EMAIL_USE_TLS = True
...
0
votes
1answer
25 views
How can I print the value of TEMPLATE_DIRS from the django interactive shell?
I would like to print this value for debugging purposes. How can I do it?
print TEMPLATE_DIRS doesn't work
print settings.TEMPLATE_DIRS doesn't work.
0
votes
1answer
44 views
Django: new project keeps looking for a settings folder
So I started a new django project on a system that has another project. I use subdomains and mod_wsgi to handle the direction to the various projects. The direction seems to be working just fine.
For ...
0
votes
1answer
35 views
How can I correctly set DJANGO_SETTINGS_MODULE for my Django project (I am using virtualenv)?
I am having some trouble setting the DJANGO_SETTINGS_MODULE for my Django project.
I have a directory at ~/dev/django-project. In this directory I have a virtual environment which I have set up with ...
0
votes
1answer
20 views
trouble updating media_root in django settings.py
I'm trying to set up a MEDIA_ROOT however when I set this in my settings.py it doesn't seem to be recognized. For example my settings.py looks like:
...
MEDIA_ROOT = '/static/files/'
...
And in a ...
0
votes
1answer
42 views
Django not able to find the static files when using django-allauth
When I use allauth, everything seems to work fine except that Django is now unable to find the static files. Without allauth all the static files are being rendered. the settings for allauth requires ...
0
votes
1answer
108 views
ZINNIA_MEDIA_URL is not defined or not recognize on django
Hi I've been trying to play around with zinnia, nevertheless the CSS is not well applied because it cannot find (or it's in blank) a setting variable called ZINNIA_MEDIA_URL
<link rel="shortcut ...
0
votes
1answer
47 views
Concatenate Django Settings “MIDDLEWARE_CLASSES”
I want to import the django default settings, using from django.conf import global_settings, and then add MIDDLEWARE_CLASSES to it. I like to do this with my settings so that I know what I have added ...
0
votes
3answers
40 views
How can I emulate the paths to my Django project on my dev environment to be the same as production?
I need to setup a Django dev environment.
I did a git clone and pulled all the django project files from production on my local machine (a Vagrant enabled VM).
The problem is that my local ...
0
votes
2answers
49 views
How to do logging.DEBUG in django code?
In django we have settings.py that defines the DEBUG for the whole project.
Now,
My have debug level is independently configured in settings.py.
How should I use logging.DEBUG ?
Way1:
if ...
0
votes
1answer
62 views
Django low-level cache API not working
I'm trying to cache the request.POST dict using the low-level cache API, but it seems to not be working. Instead of the cached dict I get the None value.
Here's what I tried:
print ...
0
votes
1answer
21 views
Auth models query in local setting raise an error
I am executing a query to auth.models.User in my local_settings, for the fact that I need a User instance in several tests.
from django.contrib.auth.models import User
TEST_USER = ...
0
votes
2answers
149 views
Django nginx admin media
I am currently testing moving from Apache mod_wsgi to Nginx and FastCGI
I have prepared the whole installation and currently testing it on a CentOS 5.4 box that runs Django 1.1.2
In my old Apache ...
0
votes
2answers
106 views
Django 1.3 LANGUAGE_CODE doesn't correctly
At first sorry for my English :).
LANGUAGE_CODE setting doesn't work correctly.
When I configured LANGUAGE_CODE="mn", but default language code is "en".
from django.utils.translation import ...
0
votes
2answers
173 views
Django - Static Files from App Directories
In a development environment, I'd like to use static files from the app directories.
#settings.py
SITE_ROOT = os.path.dirname(os.path.realpath(__file__))
STATIC_ROOT = (os.path.join(SITE_ROOT, ...