Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/python-2.7/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Templates Django:Can';找不到模板文件。/应用程序在没有模板文件的情况下工作?_Templates_Python 2.7_Shared Hosting_Django 1.4 - Fatal编程技术网

Templates Django:Can';找不到模板文件。/应用程序在没有模板文件的情况下工作?

Templates Django:Can';找不到模板文件。/应用程序在没有模板文件的情况下工作?,templates,python-2.7,shared-hosting,django-1.4,Templates,Python 2.7,Shared Hosting,Django 1.4,昨天我试着在我的django应用程序中编辑一个模板,发现模板文件甚至不再使用了。即使我删除了它,应用程序也会继续工作,我在文件中所做的更改也不会出现在网上。我在我的服务器上找不到任何其他模板文件,那么是Django以某种方式导入了它还是将它复制/保存到了其他地方 该应用程序托管在共享主机上,使用Python2.7、Django 1.4.5和FCGI My settings.py如下所示: # Hosts/domain names that are valid for this site; req

昨天我试着在我的django应用程序中编辑一个模板,发现模板文件甚至不再使用了。即使我删除了它,应用程序也会继续工作,我在文件中所做的更改也不会出现在网上。我在我的服务器上找不到任何其他模板文件,那么是Django以某种方式导入了它还是将它复制/保存到了其他地方

该应用程序托管在共享主机上,使用Python2.7、Django 1.4.5和FCGI

My 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,
        },
    }
}

谢谢你的帮助!:)

只是猜测,但是模板


尽管如此,我在您的设置中没有看到这个缓存加载程序。是否值得尝试重新启动?

是核心模板还是您制作的模板?你检查了所有模板的位置了吗?这是我制作并上传的模板。所有模板目录位置URL都指向同一个文件夹,是的,我检查了它们。你知道我的模板可能“隐藏”在哪里吗?:)它可能与模板加载器有关吗?模板必须位于模板目录下的某个位置,或者模板加载器看起来的某个位置(但从外观上看,情况可能并非如此,我会删除模板目录中的重复条目,并确保您遇到困难的模板文件不属于您安装的应用程序的一部分,而且我最不可能想到的是,它正在被您的浏览器或其他应用程序缓存。)以另一种方式告诉我