2010-06-24 161 views
1

我在運行Python 2.4的服務器上有一個django(v1.1.1)。在我的本地主機/開發計算機上,該網站非常完美。當我將文件上傳到生產服務器時,它似乎工作正常,但在頁面刷新後,我收到隨機的TemplateDoesNotExist錯誤。django零星的TemplateDoesNotExist錯誤

跟蹤報告我看了一下TEMPLATE_DIRS變量,以確保我指向正確的地方,它實際上每一個我刷新此之間的第一次改變:

TEMPLATE_DIRS
(「模板」, '/var/www/vhosts/mysite.com/apps')

TEMPLATE_DIRS
( '模板', '在/ var/WWW/Django的網站/應用/模板')

當我刷新頁面時,django/python在兩個不同位置查找的可能性如何?在嘗試3-4次後,它會突然生效,直到我刷新或進入下一頁。正確的位置是在我的settings.py文件definted /var/www/vhosts/mysite.com/apps/templates:

# Django settings for django-sites project. 

DEBUG = False 
TEMPLATE_DEBUG = DEBUG 

ADMINS = (
    # ('Your Name', '[email protected]'), 
) 

MANAGERS = ADMINS 

DATABASE_ENGINE = 'mysql' 
DATABASE_NAME = 'mysite' 
DATABASE_USER = 'mysuser' 
DATABASE_PASSWORD = 'mypass' 
DATABASE_HOST = 'www.mysite.com'    
DATABASE_PORT = '' 


# 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. 
TIME_ZONE = 'America/Chicago' 

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

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

# Absolute path to the directory that holds media. 
# Example: "/home/media/media.lawrence.com/" 
MEDIA_ROOT = '' 

# URL that handles the media served from MEDIA_ROOT. Make sure to use a 
# trailing slash if there is a path component (optional in other cases). 
# Examples: "http://media.lawrence.com", "http://example.com/media/" 
MEDIA_URL = '' 

# URL prefix for admin media -- CSS, JavaScript and images. 
# Make sure to use a trailing slash. 
ADMIN_MEDIA_PREFIX = '/admin_media/' 

# Make this unique, and don't share it with anybody. 
SECRET_KEY = 'mysecretkey' 

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

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware', 
    'django.contrib.sessions.middleware.SessionMiddleware', 
    'django.contrib.auth.middleware.AuthenticationMiddleware', 
) 

ROOT_URLCONF = 'apps.urls' 
URL_ROOT_LEAD_CAPTURE = '/lead-capture/' 

TEMPLATE_CONTEXT_PROCESSORS = (
    'django.core.context_processors.request', 
    'django.core.context_processors.auth', 
) 

PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) 

TEMPLATE_DIRS = (
    os.path.join(PROJECT_ROOT, 'templates'), 
    '/var/www/vhosts/mysite.com/apps/templates', 
) 

INSTALLED_APPS = (
    'django.contrib.auth', 
    'django.contrib.contenttypes', 
    'django.contrib.sessions', 
    'django.contrib.sites', 
    'django.contrib.admin', 
    'django.contrib.admindocs', 
) 

我感謝幫助!

+0

唯一想到的是,您上傳了在本地機器上執行的.pyc文件,但是當您重新啓動應用程序時,它們應該被覆蓋。 – zalew 2010-06-25 04:38:24

回答

0

這聽起來像是你的apache配置問題,或者你正在使用的web服務器。該PROJECT_ROOT:

PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__)) 

取決於它是由什麼都環境中運行的應用程序設置當前絕對路徑。確保您的Web服務器配置中只存在一條用於處理URL的路徑。

其次,確保所有django環境都已經徹底關閉,您可能會在服務請求時出現一些舊的,配置錯誤的環境。