﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
17489	Errors low in the stack provide unhelpful text.	Issac Kelly	nobody	"I had an error in my cache configuration for a full-site cache setup.

Here are the relavent settings:

MIDDLEWARE_CLASSES = [
    'django.middleware.cache.UpdateCacheMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
    'pagination.middleware.PaginationMiddleware',
    'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
    'django.middleware.cache.FetchFromCacheMiddleware',
]
CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'unique-snowflake'
    }
}
CACHE_MIDDLEWARE_ALIAS = 'somethingelse'
CACHE_MIDDLEWARE_SECONDS = 90 * 60
CACHE_MIDDLEWARE_KEY_PREFIX = 'issackelly_com_mw'

With these settings I got a traceback in the runserver console, but the only thing that was displayed in the browser was the following:

""""""A server error occurred.  Please contact the administrator."""""""	Bug	closed	Core (Other)	1.4-alpha-1	Normal	wontfix		chomik	Design decision needed	0	0	0	0	0	0
