A Django settings file is just a Python module with module-level variables that contains all the configuration of your Django installation such as, Databases, Installed apps and Media and Static location to name a few.

learn more… | top users | synonyms

0
votes
1answer
24 views

django settings error (DB Engine) when I moved all of my apps to “apps” directory (SOLVED)

I changed the traditional django layout, and decided to put all of my apps to apps directory. the initial layout is something like this : Project/ apps/ myapp/ __init__.py ...
0
votes
0answers
29 views

What should the Django DATABASE settings be in settings.py when you are using Apache2, Python, and Django on Ubuntu 12.04 and MSSQL on another server?

What should the Django DATABASE settings be in settings.py when you are using Apache2, Python, and Django on Ubuntu 12.04 accessing an MS SQL database on another server? Currently my settings are: ...
0
votes
1answer
29 views

django a different production_settings file

I have a settings.py file, that contains basic settings. Then I have a local_settings.py file, that contains some profiling and testing apps as django_debug_toolbar etc. and then I have a different ...
2
votes
1answer
63 views

Cannot get environment variables in Django settings file

I'm trying to read some environment variables in Django settings, which i have defined in /home/user/.bashrc (and latter in /etc/bash.bashrc ) , but all i get is a KeyError exception. I know my ...
1
vote
1answer
21 views

How do I debug a production server not finding settings and logging files not working?

I'm attempting to diagnose why my app is not finding it's settings file. The settings are displayed on the bottom of the Django toolbar, but the traceback shows the error: UndefinedError: 'settings' ...
3
votes
1answer
109 views

Why does using a variable in settings.ALLOWED_INCLUDE_ROOTS won't let me use {% ssi %}?

Problem I'm using Django 1.3. I will have to use many different JavaScript functions (like 10 or something) in my template. What I first did was to put them in the <script> tag, which worked ...
1
vote
0answers
35 views

Django session unexpectedly loses data

I have an admin action which stores the current selection and a handler class (subclass of object) to the session, and redirects to another page which processes the selection. For some reason ...
4
votes
1answer
97 views

Django with django-nose: two identical settings files with different behavior in running test command

With Django 1.4.5, I'm using django-nose 1.1.0. I have two settings files with no diff. -> % diff local_settings.py test_settings/sqlite.py I run the tests with: -> % python manage.py test ...
1
vote
1answer
38 views

More trailing slashes being added at every refresh - Django

I'm using django 1.3.1 and in my application and I have set DEBUG = False in my settings.py. when I refresh the page, the url is going into some loop process and in every loop a slash is being ...
0
votes
0answers
29 views

How do I add CSS/media to the pinax-social-project?

I'm working on a Pinax social site, off the Github clone at https://github.com/pinax/pinax-project-social . Initially the page was unstyled; it appeared not to see CSS or other formatting. So I edited ...
-2
votes
1answer
85 views

Static URL and CSS in Django [duplicate]

I am trying to setup a static url in Django and have my templates use it to link to the css. Here is my code. Why is it not working? Also, what is the best practice for setting this up? Thanks. # ...
0
votes
0answers
27 views

Django user session sharing from two different systems and multiple projects

I created django project1 in one server/machine1 and project2 in another server/machine2, created database in machine1 same database configuration given for project2 in another machine. Maintained ...
0
votes
3answers
59 views

Unable to load CSS files in Django

I'm using Ubuntu and Django 1.3.7. Following are the various relevant settings: My directory structure: mysite/ manage.py settings.py __init__.py urls.py myapp/ ...
1
vote
2answers
152 views

Python/Django - Avoid saving passwords in source code

I use Python and Django to create web applications, which we store in source control. The way Django is normally set up, the passwords are in plain text within the settings.py file. Storing my ...
0
votes
2answers
111 views

Where to store secret keys DJANGO

For the life of me, I have been looking for this everywhere and have not found the answer. I hope I am not posting a duplicate. It is advised everywhere that you should keep your secret keys in a ...
0
votes
2answers
511 views

STATIC_URL Not Working After Django 1.5 Upgrade

Im probably just tired and dont notice something obvious here but after upgrade to Django 1.5 the path to my static files is broken. settings.py from os.path import abspath, basename, dirname, join, ...
0
votes
1answer
47 views

Django App breaks Using Heroku Database Settings

When I run my Django app locally everything works just fine but when I deploy to Heroku using import dj_database_url DATABASES = {'default': dj_database_url.config(default='postgres://')} For my ...
0
votes
1answer
52 views

Django TypeError Using Heroku

So Ive managed to screw something up between my production database settings for heroku. Running the production settings locally I receive the error, ImproperlyConfigured at / settings.DATABASES is ...
1
vote
1answer
164 views

Django Gevent integration

How to integrate Gevent with Django framework, What settings has to be modified in the Settings.py and wsgi.py files for the integration. I want to start gevent http server(port 8000) and gevent web ...
0
votes
1answer
60 views

Django settings.DATABASE 'default' value is not set

I have a Django 1.4.3 project using Python 2.7.3 on Ubuntu 12.10. In my entire project, there is only one settings.py file, and in manage.py, I have this line ...
0
votes
0answers
30 views

How to tell if Django Database is GIS capable

I am wondering if there is an easy way of detecting if the Django database used by a certain application is GIS capable? (and all the required softwares have been installed) One way of doing this is ...
1
vote
1answer
220 views

Running a standalone script doing a model query in Django with `settings/dev.py` instead of `settings.py`

Note the settings/dev.py instead of one settings.py file and the script.py in my_app in the following Django(1.4.3) project: . ├── my_project │ ├── my_app │ │ ├── __init__.py │ │ ├── ...
1
vote
1answer
87 views

Django Logging: Change sender email address from root@localhost to something else

In my settings.py i have the following logging config. If there's an error i get an email from root@localhost. My problem is that i have several projects and want all error messages sent to the same ...
0
votes
0answers
77 views

Inability to generate documentation Django

When you try to generate the documentation with my epydocs displays the following error. Does anyone have any idea why this error happens? problem in models - : Requested setting DATABASES, but ...
0
votes
0answers
70 views

Django: security middleware is crashing the site

On production, I've been trying to add the djangosecure.middleware.SecurityMiddleware (from http://pypi.python.org/pypi/django-secure)to my settings, but haven't had any luck making it work. When I ...
0
votes
1answer
67 views

What should django settings and urls look like for media and static deploying in production with heroku?

Currently, I have been having issues with getting my static and media to work with django on heroku. My static is finally working, but my media won't, and this is my first in any sort of production ...
0
votes
0answers
68 views

How to configure logging handler to produce monthly rotated log files?

I am about to configure a python logging system using the dictconfig format in settings.py as suggested by Django. For effectiveness, I would like to log entries in monthly splitted log files ...
3
votes
2answers
207 views

Recommended place for a Django project to live on Linux

I'm uploading my first Django project to a Linux server, where I should put my project in the filesystem? With a PHP, or ASP project, everything goes into /var/www, would it be ok to do the same and ...
2
votes
2answers
208 views

Django: input date format different when creating object from updating it

When I create an object and put the date into the input text field with dd/mm/yyyy format (witch is the format I want for my app) it works fine. But when I try to modify it (it means I get the key of ...
2
votes
2answers
418 views

Setting Up Django and PostgreSQL on two different EC2 instances

Hello StackOverFlowers :) up until now I have been running my Django back end and my PostgreSQL database on the same micro EC2 instance. I've set up two EC2 instances, one with my django back end ...
0
votes
3answers
592 views

Django 1.3.1 Heroku Postgres error

We recently pushed our site to staging and have been struggling to get it up ever since, and the team at Heroku are not really responding in time, so I am turning to the community to see if there is a ...
0
votes
1answer
384 views

Django Collectstatic command Changed something

So I've never deployed a Django app and I'm trying to get up to speed on the whole thing. I ran the collectstatic command and now non of my static files will render. When I run the findstatic command ...
2
votes
3answers
150 views

How can interate over all the settings in Django?

How can I iterate over all the Django settings? I need to read all the settings which begin with MYAPP_. I've tried doing this: from django.conf import settings for setting in settings: print ...
0
votes
1answer
56 views

Changed Settings Config now Django Static files isnt working

So I updated my project settings with the following scheme PROJECT_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) /settings base.py prod.py dev.py Is this the correct ...
1
vote
1answer
132 views

How to setup django with unique settings.py per SITE_ID

I have been researching the various (and there are many) ways to have multiple sites under a single Django framework. I still don't see a solution that fits well for my use case. The use case being: ...
2
votes
2answers
314 views

Enable Django logging also if DEBUG is True

By reading the official django documentation I haven't understood much about it. https://docs.djangoproject.com/en/dev/topics/logging/#configuring-logging I would like to enable logging also if DEBUG ...
1
vote
1answer
62 views

mobile switching is not working in Django?

i have django project in which mobile part settings.py configured as given below MIDDLEWARE_CLASSES = ( 'site_middleware.SetSiteFromHost', ) SITE_ID = 1 ...
0
votes
3answers
338 views

from django.db import connection giving error in django1.4

I was trying to connect to the database by using the command from django.db import connection from the python shell but this produced the following Import error File "<stdin>", line 1, in ...
0
votes
5answers
338 views

Django cant find templates

So ive been trying to setup a django settings module that will check the environment variable and load settings. Heres what my settings module looks like /templates home.html /settings ...
3
votes
2answers
110 views

Should I move my project files into the parent directory after starting a project in Django?

After I run django-admin.py startproject foobar it creates a parent foobar directory and another foobar (same name) folder within that, along with the manage.py file. The question is - should I move ...
0
votes
2answers
2k views

Django 1.4.1 error loading MySQLdb module when attempting 'python manage.py shell'

I am trying to set up MySQL, and can't seem to be able to enter the Django manage.py shell interpreter. I did install MySQL-python but that did not solve the issue. Getting the output below: ...
1
vote
1answer
857 views

Django 1.4.1 'settings.DATABASES improperly configured' error

I am going through the Django Book and got really stuck when trying to execute the 'cursor = connection.cursor()' command to test the database configuration. I am a complete noob but I did spend ...
0
votes
1answer
128 views

Django: django-facebook redirects to /facebook/connect/

I read all the documentation about django-facebook, and I'm still not understanding why after setup the settings.py, the registration redirects to a template on django-facebook. settings.py ...
2
votes
1answer
186 views

Pydev autogen DJANGO_SETTINGS_MODULE environment variable?

I am using Eclipse 3.7.2 and Pydev 2.6 to develop Django program. When I upgrade my Django from 1.3 to 1.4.1, I find a question about "DJANGO_SETTINGS_MODULE" environment variable. When I run ...
4
votes
1answer
285 views

Django settings.py variables in templates

I'm encountering a very strange error. I have an app ID defined in my settings.py file like so: CARDSPRING_APP_ID = '################' This works on nearly every page in my site, except for one. ...
1
vote
1answer
114 views

Django: What's the purpose of the LANGUAGE_CODE setting?

I've made a prototype site with working i18n text translations. But whatever I put in LANGUAGE_CODE setting in the settings.py, I see no effect on my pages. It seems to be always overridden by the ...
1
vote
1answer
61 views

Django: What's the point to have 2-items tuples for the LANGUAGES setting?

In the project's settings file, if we want to restrict language choices for i18n, we are supposed to write this: gettext = lambda s: s LANGUAGES = ( ('Fr', gettext('French')), ('en', ...
0
votes
1answer
78 views

Django - ImproperlyConfiguredError, Guardian's ANONYMOUS_USER_ID

I am using django-guardian to handle object permissions. In my settings.py: ANONYMOUS_USER_ID = -1 However, when I try to run the server, I get an improperly configured error: ...
4
votes
3answers
1k views

Python: 'import *' vs execfile

In some of my Django apps I'm using a settings_local.py file to override settings that are different on various environments (e.g. development, test and production). I have originally used the ...
0
votes
0answers
133 views

manage.py not working after moving project directories

I am relatively new at Django but have been loving it so far... Sorry in advance for telling a long story, but I think it helps to understand how I got here. I originally set up a project under my ...

1 2 3