2013-03-15 2 views
0

어제 나는 장고 앱에서 템플릿을 편집하려고 시도했는데 템플릿 파일이 더 이상 사용되지 않는다는 것을 알았습니다. 삭제하더라도 응용 프로그램은 계속 작동하고 파일에서 변경 한 내용은 온라인에 표시되지 않습니다. 내 서버에서 다른 템플릿 파일을 찾을 수 없으므로 Django가 어떻게 든 가져 오거나 다른 곳에서 복사/저장할 수 있습니까?Django : 템플릿 파일을 찾을 수 없습니다./앱이 템플릿 파일없이 작동합니까?

이 응용 프로그램은 Python2.7, Django 1.4.5 및 FCGI와 함께 공유 호스트에서 호스팅됩니다.

내 settings.py은 다음과 같습니다

# Hosts/domain names that are valid for this site; required if DEBUG is False 
# See https://docs.djangoproject.com/en/1.4/ref/settings/#allowed-hosts 
ALLOWED_HOSTS = ['*'] 

#FORCE_SCRIPT_NAME = '/polls' 

# Local time zone for this installation. Choices can be found here: 
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name 
# although not all choices may be available on all operating systems. 
# In a Windows environment this must be set to your system time zone. 
TIME_ZONE = 'Europe/Berlin' 

# Language code for this installation. All choices can be found here: 
# http://www.i18nguy.com/unicode/language-identifiers.html 
LANGUAGE_CODE = 'de-de' 

SITE_ID = 1 

# If you set this to False, Django will make some optimizations so as not 
# to load the internationalization machinery. 
USE_I18N = True 

# If you set this to False, Django will not format dates, numbers and 
# calendars according to the current locale. 
USE_L10N = True 

# If you set this to False, Django will not use timezone-aware datetimes. 
USE_TZ = True 

# Absolute filesystem path to the directory that will hold user-uploaded files. 
# Example: "/home/media/media.lawrence.com/media/" 
MEDIA_ROOT = '' 

# URL that handles the media served from MEDIA_ROOT. Make sure to use a 
# trailing slash. 
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/" 
MEDIA_URL = '' 

# Absolute path to the directory static files should be collected to. 
# Don't put anything in this directory yourself; store your static files 
# in apps' "static/" subdirectories and in STATICFILES_DIRS. 
# Example: "/home/media/media.lawrence.com/static/" 
STATIC_ROOT = 'http://ulli.cepheus.uberspace.de/static/' 

# URL prefix for static files. 
# Example: "http://media.lawrence.com/static/" 
STATIC_URL = 'http://ulli.cepheus.uberspace.de/static/' 

# Additional locations of static files 
STATICFILES_DIRS = (
    "/var/www/virtual/ulli/html/static", 
    # Put strings here, like "/home/html/static" or "C:/www/django/static". 
    # Always use forward slashes, even on Windows. 
    # Don't forget to use absolute paths, not relative paths. 
) 

# List of finder classes that know how to find static files in 
# various locations. 
STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder', 
    'django.contrib.staticfiles.finders.AppDirectoriesFinder', 
# 'django.contrib.staticfiles.finders.DefaultStorageFinder', 
) 

# List of callables that know how to import templates from various sources. 
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader', 
    'django.template.loaders.app_directories.Loader', 
#  'django.template.loaders.eggs.Loader', 
) 

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware', 
    'django.contrib.sessions.middleware.SessionMiddleware', 
    'django.middleware.csrf.CsrfViewMiddleware', 
    'django.contrib.auth.middleware.AuthenticationMiddleware', 
    'django.contrib.messages.middleware.MessageMiddleware', 
    # Uncomment the next line for simple clickjacking protection: 
    # 'django.middleware.clickjacking.XFrameOptionsMiddleware', 
) 

ROOT_URLCONF = 'mysite.urls' 

# Python dotted path to the WSGI application used by Django's runserver. 
WSGI_APPLICATION = 'mysite.wsgi.application' 

TEMPLATE_DIRS = (
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". 
    # Always use forward slashes, even on Windows. 
    # Don't forget to use absolute paths, not relative paths. 
    "/template", 
    "/template/polls", 
    "/var/www/virtual/ulli/html/template/polls", 
    "http://ulli.cepheus.uberspace.de/template", 
) 

INSTALLED_APPS = (
    'django.contrib.auth', 
    'django.contrib.contenttypes', 
    'django.contrib.sessions', 
    'django.contrib.sites', 
    'django.contrib.messages', 
    'django.contrib.staticfiles', 
    # Uncomment the next line to enable the admin: 
    'django.contrib.admin', 
    # Uncomment the next line to enable admin documentation: 
    # 'django.contrib.admindocs', 
    'polls', 
) 

# A sample logging configuration. The only tangible logging 
# performed by this configuration is to send an email to 
# the site admins on every HTTP 500 error when DEBUG=False. 
# See http://docs.djangoproject.com/en/dev/topics/logging for 
# more details on how to customize your logging configuration. 
LOGGING = { 
    'version': 1, 
    'disable_existing_loggers': False, 
    'filters': { 
     'require_debug_false': { 
      '()': 'django.utils.log.RequireDebugFalse' 
     } 
    }, 
    'handlers': { 
     'mail_admins': { 
      'level': 'ERROR', 
      'filters': ['require_debug_false'], 
      'class': 'django.utils.log.AdminEmailHandler' 
     } 
    }, 
    'loggers': { 
     'django.request': { 
      'handlers': ['mail_admins'], 
      'level': 'ERROR', 
      'propagate': True, 
     }, 
    } 
} 

여러분의 도움에 감사드립니다! :)

+0

핵심 템플릿이나 만든 템플릿입니까? TEMPLATE_DIRS 위치를 모두 확인 했습니까? – Necrolyte2

+0

내가 작성하여 업로드 한 템플릿입니다. 모든 TEMPLATE_DIR 위치 URL은 동일한 폴더로 연결되며 예, 확인했습니다. 내 서식 파일이 "숨어있는"곳을 알고 있습니까? :) 그것은 TEMPLATE_LOADERS와 관련이 있을까요? 또는 - - – 36milesperhour

+0

템플릿은 TEMPLATE_DIRS 에서 하나의 위치에있을하는 모습을 TEMPLATE_LOADERS 곳 (그러나 그것의 모습에서, 그게 내가 중복 항목을 제거 할 없는 경우 아마도 당신 TEMPLATE_DIRS에 있고 템플릿 파일이 설치된 응용 프로그램 중 하나에도 포함되어 있지 않은지 확인하십시오. 내가 생각할 수있는 마지막 것은 브라우저 나 브라우저에서 캐시되고 있다는 것입니다. 다른 어떤 방식으로 – Necrolyte2

답변

0

템플릿은 might be cached입니다.

설정에 캐시 된 로더가 표시되지 않지만 어쨌든 다시 시작하려고 할만한 가치가 있을까요?