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
0answers
5 views

How do I get celeryd to use my Django settings?

I've got Celery up and running with my Django project, and when I start the worker process using the command line it works perfectly. But when I set up the celeryd init script to run the worker ...
0
votes
2answers
30 views

how to import the custormed settings.py variable in django project?

I use customer settings in my django project as in my manage.py. I write: if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "setting.windows") ... I want to run my ...
0
votes
0answers
19 views

Django Userena without usernames

I am trying to disable the use of usernames within django userena. Apparently, according to this you can disable the use of username with the setting: ** USERENA_WITHOUT_USERNAMES Default: False ...
1
vote
1answer
13 views

Django: How do you override logfile variable during testing?

I'm trying to get my test suite to create a different logfile than the one I use in development, but for some reason the override_settings decorator doesn't seem to be working. When I run the test, ...
1
vote
0answers
20 views

What is the equivalent to django.conf.global_settings for third-party apps?

For Django itself, settings mostly have default values, defined in django.conf.global_settings. What should a third-party app do instead? (And ideally, why?) Modify django.conf.global_settings? (A ...
-1
votes
0answers
16 views

I am Running Django on Google Cloud . Where should i Run SETTINGS_MODE = 'prod' python manage.py runserver Showing error

C:\Python27\Lib\site-packages\django\bin\mysite1>SETTINGS_MODE ='prod' ./manage. py syncdb 'SETTINGS_MODE' is not recognized as an internal or external command, operable program or batch file. What ...
0
votes
1answer
25 views

environment variables in virtualenv's postactivate using mod_wsgi

Hope you're well. I've added a couple of environment variables to my virtualenv postactivate file, for example: export DATABASE_USER="root" export DATABASE_PASSWORD="12345678" I then assign those ...
0
votes
1answer
31 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
34 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
30 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
112 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
24 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
2answers
123 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
45 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
113 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
45 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
34 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
94 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
29 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
69 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
207 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
179 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
722 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
52 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
57 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
194 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
68 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
341 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
109 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
78 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
84 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
68 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
83 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
251 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
234 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
531 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
657 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
457 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
164 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
57 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
139 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
397 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
66 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
376 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
423 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 ...
4
votes
2answers
118 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
923 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
130 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 ...

1 2 3 4