2013-03-15 111 views
0

昨天我試圖編輯我的django應用程序中的模板,並注意到模板文件甚至沒有被使用(不再)。即使我刪除它,該應用程序仍將繼續工作,並且我在文件中所做的更改不會在線顯示。我在我的服務器上找不到任何其他模板文件,那麼是否可以讓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 2013-03-15 11:13:42

+0

這是我製作並上傳的模板。所有TEMPLATE_DIR位置網址都會導向相同的文件夾,並且是的,我檢查了它們。你有什麼想法,我的模板可能會「隱藏」? :)它可能與TEMPLATE_LOADERS有關嗎? – 36milesperhour 2013-03-15 11:22:52

+0

模板,必須爲在上的位置的下 TEMPLATE_DIRS - 或 - 的地方,看起來TEMPLATE_LOADERS(但是從外觀上來看,這可能是不 我會刪除重複的條目的情況下,你在TEMPLATE_DIRS中,並確保您遇到困難的模板文件也不屬於您已安裝的其中一個應用程序的一部分 我能想到的最後一件事是它正在被您的瀏覽器緩存或一些其他的方式 – Necrolyte2 2013-03-16 14:35:59

回答

0

只是一個猜測,但模板might be cached

雖然,我沒有在您的設置中看到這個緩存加載器。無論如何,值得嘗試重新啓動?