Django-fr

Forum

  • Accueil
  • » Django-fr
  • » MEDIA_ROOT, MEDIA_URL, ADMIN_MEDIA_PREFIX manque dans sittings.py

#1 17-04-2017 17:16:36

Rononn
Membre
Inscription : 04-03-2017
Messages : 5

MEDIA_ROOT, MEDIA_URL, ADMIN_MEDIA_PREFIX manque dans sittings.py

Bonsoir,
J'utilise Python 3.5.2 et Django 1.10.6 . Dans le sittings.py je retrouve pas: MEDIA_ROOT, MEDIA_URL, ADMIN_MEDIA_PREFIX. C'est normal? Si c'est pas normal comment corriger sa? Merci.

Voici le contenu de mon sittings.py :


"""
Django settings for zos project.

Generated by 'django-admin startproject' using Django 1.10.6.

For more information on this file, see
https://docs.djangoproject.com/en/1.10/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.10/ref/settings/
"""

import os

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.10/ … checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'qkbil6cj@!qi$xubkdvv(x=v4p!b-7!#rsls70d+h*z6!0xt=m'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'blog',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'zos.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'zos.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.10/ … #databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}


# Password validation
# https://docs.djangoproject.com/en/1.10/ … validators

AUTH_PASSWORD_VALIDATORS = [
    {
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    },
]


# Internationalization
# https://docs.djangoproject.com/en/1.10/topics/i18n/

LANGUAGE_CODE = 'fr-fr'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.10/ … tic-files/

STATIC_URL = '/static/'

STATICFILES_DIRS = (
    os.path.join(BASE_DIR, "static"),
)

Hors ligne

#2 20-04-2017 08:32:29

Xavier Ordoquy
Administrateur
Lieu : Puteaux, France
Inscription : 12-10-2011
Messages : 312
Site Web

Re : MEDIA_ROOT, MEDIA_URL, ADMIN_MEDIA_PREFIX manque dans sittings.py

Bonjour,

Le template de base n'en donne pas. La documentation explique tout ce qu'il faut savoir pour les configurer pour ton projet avec tes besoins.

Hors ligne

#3 28-08-2017 00:38:09

RobertOpite
Membre
Inscription : 28-08-2017
Messages : 1

Re : MEDIA_ROOT, MEDIA_URL, ADMIN_MEDIA_PREFIX manque dans sittings.py

Ultra Phuture Music. Hear: a Dance dj mix

Hors ligne

  • Accueil
  • » Django-fr
  • » MEDIA_ROOT, MEDIA_URL, ADMIN_MEDIA_PREFIX manque dans sittings.py

Pied de page des forums