Closed Prindle19 closed 10 years ago
This might be a problem b/c of your settings.... http://django-compressor.readthedocs.org/en/latest/settings/?highlight=less#django.conf.settings.COMPRESS_PRECOMPILERS.
$ which lessc
/usr/local/bin/lessc
COMPRESS_ENABLED = True
COMPRESS_PRECOMPILERS = (
('text/less', '/usr/local/bin/lessc {infile} {outfile}'),
)
"Depending on the implementation, some precompilers might not support outputting to something else than stdout, so you’ll need to omit the {outfile} parameter when working with those."
If fixing that resolves it, then we should probably use this ticket to fix that in the instructions.
So I went back and made sure less was installed globally (instructions I had built it with NPM) and then changed to remove the outflie.
No help:
UncompressableFileError at /
'font-awesome-2/css/font-awesome.min.css' could not be found in the COMPRESS_ROOT '/usr/src/static' or with staticfiles.
Request Method: GET
Request URL: http://23.251.153.65:8001/
Django Version: 1.5.4
Exception Type: UncompressableFileError
Exception Value:
'font-awesome-2/css/font-awesome.min.css' could not be found in the COMPRESS_ROOT '/usr/src/static' or with staticfiles.
Exception Location: /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in get_filename, line 110
Python Executable: /home/seanwohltman/try2/geoq/bin/python
Python Version: 2.7.3
Python Path:
['/home/seanwohltman/try2/geoq/geoq',
'/home/seanwohltman/try2/geoq/lib/python2.7',
'/home/seanwohltman/try2/geoq/lib/python2.7/plat-linux2',
'/home/seanwohltman/try2/geoq/lib/python2.7/lib-tk',
'/home/seanwohltman/try2/geoq/lib/python2.7/lib-old',
'/home/seanwohltman/try2/geoq/lib/python2.7/lib-dynload',
'/usr/lib/python2.7',
'/usr/lib/python2.7/plat-linux2',
'/usr/lib/python2.7/lib-tk',
'/home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages',
'/home/seanwohltman/try2/geoq/lib/python2.7/site-packages',
'/home/seanwohltman/try2/geoq/geoq/geoq',
'/home/seanwohltman/try2/geoq/geoq/geoq']
Server time: Tue, 29 Apr 2014 16:38:24 -0400
Error during template rendering
In template /home/seanwohltman/try2/geoq/geoq/geoq/core/templates/core/base.html, error at line 25
'font-awesome-2/css/font-awesome.min.css' could not be found in the COMPRESS_ROOT '/usr/src/static' or with staticfiles.
15 }
16
17
20
21
22 {% bootstrap_stylesheet_tag %}
23 {% bootstrap_stylesheet_tag "responsive" %}
24
25 {% compress css %}
26
27
28
29 {% endcompress %}
30
31 {% compress js %}
32
33
34 {% endcompress %}
35
Traceback Switch to copy-and-paste view
/home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/core/handlers/base.py in get_response response = response.render() ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/response.py in render self.content = self.rendered_content ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/response.py in rendered_content content = template.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in render return self._render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in _render return self.nodelist.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in render bit = self.render_node(node, context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/debug.py in render_node return node.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/loader_tags.py in render return compiled_parent._render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in _render return self.nodelist.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in render bit = self.render_node(node, context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/debug.py in render_node return node.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/templatetags/compress.py in render return self.render_compressed(context, self.kind, self.mode, forced=forced) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/templatetags/compress.py in render_compressed cache_key, cache_content = self.render_cached(compressor, kind, mode, forced=forced) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/templatetags/compress.py in render_cached cache_key = get_templatetag_cachekey(compressor, mode, kind) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/cache.py in get_templatetag_cachekey "templatetag.%s.%s.%s" % (compressor.cachekey, mode, kind)) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/utils/decorators.py in get value = obj.dict[self.name] = self.get(obj) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in cachekey [self.content] + self.mtimes).encode(self.charset), 12) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/utils/decorators.py in __get value = obj.dict[self.name] = self.__get(obj) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in mtimes for kind, value, basename, elem in self.split_contents() ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/css.py in split_contents filename = self.get_filename(basename) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in get_filename self.finders and " or with staticfiles." or ".")) ... ▶ Local vars Request information
GET
No GET data
POST
No POST data
FILES
No FILES data
COOKIES
No cookie data
META
Variable Value
RUN_MAIN
'true'
SERVER_SOFTWARE
'WSGIServer/0.1 Python/2.7.3'
SCRIPT_NAME
u''
REQUEST_METHOD
'GET'
SERVER_PROTOCOL
'HTTP/1.1'
HOME
'/home/seanwohltman'
CONTENT_LENGTH
''
VIRTUAL_ENV
'/home/seanwohltman/try2/geoq'
SHELL
'/bin/bash'
SERVER_PORT
'8001'
HTTP_HOST
'23.251.153.65:8001'
HTTP_CACHE_CONTROL
'max-age=0'
HTTPACCEPT
'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/_;q=0.8'
wsgi.version
(1, 0)
wsgi.run_once
False
SSH_TTY
'/dev/pts/1'
wsgi.errors
<open file '
False
HTTP_ACCEPT_LANGUAGE
'en-US,en;q=0.8'
MAIL
'/var/mail/seanwohltman'
SSH_CONNECTION
'74.93.119.149 60575 10.240.145.161 22'
PATH_INFO
u'/'
SSH_CLIENT
'74.93.119.149 60575 22'
LOGNAME
'seanwohltman'
USER
'seanwohltman'
QUERY_STRING
''
PATH
'/home/seanwohltman/try2/geoq/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/home/seanwohltman/node_modules/less/bin'
PS1
'(geoq)[\e]0;\u@\h: \w\a]${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
TERM
'xterm-256color'
HTTP_USER_AGENT
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36'
HTTP_CONNECTION
'keep-alive'
SERVER_NAME
'geoq1.c.flowing-bazaar-548.internal'
REMOTE_ADDR
'74.93.119.149'
SHLVL
'1'
wsgi.url_scheme
'http'
SSH_AUTH_SOCK
'/tmp/ssh-0el5bu4sLj/agent.2046'
wsgi.input
<socket._fileobject object at 0x1e89bd0>
wsgi.multithread
True
TZ
'America/NewYork'
'/home/seanwohltman/try2/geoq/bin/paver'
LSCOLORS
'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:.tar=01;31:.tgz=01;31:.arj=01;31:.taz=01;31:.lzh=01;31:.lzma=01;31:.tlz=01;31:.txz=01;31:.zip=01;31:.z=01;31:.Z=01;31:.dz=01;31:.gz=01;31:.lz=01;31:.xz=01;31:.bz2=01;31:.bz=01;31:.tbz=01;31:.tbz2=01;31:.tz=01;31:.deb=01;31:.rpm=01;31:.jar=01;31:.war=01;31:.ear=01;31:.sar=01;31:.rar=01;31:.ace=01;31:.zoo=01;31:.cpio=01;31:.7z=01;31:.rz=01;31:.jpg=01;35:.jpeg=01;35:.gif=01;35:.bmp=01;35:.pbm=01;35:.pgm=01;35:.ppm=01;35:.tga=01;35:.xbm=01;35:.xpm=01;35:.tif=01;35:.tiff=01;35:.png=01;35:.svg=01;35:.svgz=01;35:.mng=01;35:.pcx=01;35:.mov=01;35:.mpg=01;35:.mpeg=01;35:.m2v=01;35:.mkv=01;35:.webm=01;35:.ogm=01;35:.mp4=01;35:.m4v=01;35:.mp4v=01;35:.vob=01;35:.qt=01;35:.nuv=01;35:.wmv=01;35:.asf=01;35:.rm=01;35:.rmvb=01;35:.flc=01;35:.avi=01;35:.fli=01;35:.flv=01;35:.gl=01;35:.dl=01;35:.xcf=01;35:.xwd=01;35:.yuv=01;35:.cgm=01;35:.emf=01;35:.axv=01;35:.anx=01;35:.ogv=01;35:.ogx=01;35:.aac=00;36:.au=00;36:.flac=00;36:.mid=00;36:.midi=00;36:.mka=00;36:.mp3=00;36:.mpc=00;36:.ogg=00;36:.ra=00;36:.wav=00;36:.axa=00;36:.oga=00;36:.spx=00;36:_.xspf=00;36:'
GATEWAY_INTERFACE
'CGI/1.1'
CSRF_COOKIE
u'XUGGmrcGp87N37oChPhLqGNYOcpUKzO9'
OLDPWD
'/home/seanwohltman/try2/geoq/geoq/geoq'
PWD
'/home/seanwohltman/try2/geoq/geoq'
DJANGO_SETTINGS_MODULE
'geoq.settings'
CONTENT_TYPE
'text/plain'
wsgi.file_wrapper
''
REMOTE_HOST
''
HTTP_ACCEPT_ENCODING
'gzip,deflate,sdch'
Settings
Using settings module geoq.settings
Setting Value
COMPRESS_URL
'/static/'
LEAFLET_CSS
['/static/leaflet/leaflet-draw/leaflet.draw.css',
'/static/leaflet/leaflet-draw/leaflet.draw.css']
COMPRESS_OUTPUT_DIR
'CACHE'
COMPRESS_TEMPLATE_FILTER_CONTEXT
{'STATIC_URL': '/static/'}
USE_L10N
True
COMPRESS_DATA_URI_MAX_SIZE
1024
CSRF_COOKIE_SECURE
False
LANGUAGE_CODE
'en-us'
ROOT_URLCONF
'geoq.urls'
MANAGERS
(('Admin User', 'admin@domain.com'),)
COMPRESS_CSS_HASHING_METHOD
'mtime'
DEFAULT_CHARSET
'utf-8'
SESSION_SERIALIZER
'django.contrib.sessions.serializers.PickleSerializer'
STATIC_ROOT
'/usr/src/static/'
COMPRESS_CLOSURE_COMPILER_ARGUMENTS
''
USE_THOUSAND_SEPARATOR
False
COMPRESS_OFFLINE_MANIFEST
'manifest.json'
ALLOWED_HOSTS
[]
MESSAGE_STORAGE
'django.contrib.messages.storage.fallback.FallbackStorage'
EMAIL_SUBJECT_PREFIX
'[Django] '
SEND_BROKEN_LINK_EMAILS
False
STATICFILES_FINDERS
('django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'compressor.finders.CompressorFinder')
SESSION_CACHE_ALIAS
'default'
COMPRESS_CSSTIDY_ARGUMENTS
'--template=highest'
SESSION_COOKIE_DOMAIN
None
SESSION_COOKIE_NAME
'sessionid'
ADMIN_FOR
()
TIME_INPUTFORMATS
('%H:%M:%S', '%H:%M')
DATABASES
{'default': {'ENGINE': 'django.contrib.gis.db.backends.postgis',
'HOST': 'localhost',
'NAME': 'geoq',
'OPTIONS': {},
'PASSWORD': u'***',
'PORT': '5432',
'TEST_CHARSET': None,
'TEST_COLLATION': None,
'TEST_MIRROR': None,
'TEST_NAME': None,
'TIME_ZONE': 'UTC',
'USER': 'geoq'}}
COMPRESS_YUI_BINARY
'java -jar yuicompressor.jar'
FILE_UPLOAD_PERMISSIONS
None
FILE_UPLOAD_HANDLERS
('django.core.files.uploadhandler.MemoryFileUploadHandler',
'django.core.files.uploadhandler.TemporaryFileUploadHandler')
DEFAULT_CONTENT_TYPE
'text/html'
LEAFLET_CONFIG
{'PLUGINS': {'ALL': {'css': ['/static/leaflet/leaflet.css',
'/static/leaflet/draw/leaflet.draw.css',
'/static/leaflet/leaflet-draw/leaflet.draw.css',
'/static/leaflet/leaflet-draw/leaflet.draw.css'],
'js': ['/static/leaflet/leaflet.js',
'/static/leaflet/draw/leaflet.draw.js',
'/static/leaflet/leaflet.extras.js',
'/static/leaflet/leaflet.forms.js',
'/static/leaflet/leaflet-draw/leaflet.draw.js',
'/static/leaflet/esri-leaflet.min.js']},
'default': {},
'is_normalized': True,
'draw': {'css': ['/static/leaflet/leaflet-draw/leaflet.draw.css',
'/static/leaflet/leaflet-draw/leaflet.draw.css'],
'js': ['/static/leaflet/leaflet-draw/leaflet.draw.js'],
'repo': 'https://github.com/Leaflet/Leaflet.draw'},
'esri': {'css': [],
'js': ['/static/leaflet/esri-leaflet.min.js'],
'repo': 'https://github.com/Esri/esri-leaflet'},
'forms': {'auto-include': False,
'css': ['/static/leaflet/leaflet.css',
'/static/leaflet/draw/leaflet.draw.css'],
'js': ['/static/leaflet/leaflet.js',
'/static/leaflet/draw/leaflet.draw.js',
'/static/leaflet/leaflet.extras.js',
'/static/leaflet/leaflet.forms.js']}}}
COMPRESS_CSS_COMPRESSOR
'compressor.css.CssCompressor'
APPEND_SLASH
True
FIRST_DAY_OF_WEEK
0
DATABASE_ROUTERS
[]
YEAR_MONTH_FORMAT
'F Y'
COMPRESS_OFFLINE_TIMEOUT
31536000
STATICFILES_STORAGE
'django.contrib.staticfiles.storage.StaticFilesStorage'
CACHES
{'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}
SERVER_EMAIL
'root@localhost'
SESSION_COOKIE_PATH
'/'
COMPRESS_PARSER
'compressor.parser.AutoSelectParser'
COMPRESS_OFFLINE_CONTEXT
{'STATIC_URL': '/static/'}
COMPRESS_CACHE_BACKEND
'default'
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',
'geoq.core.middleware.UserPermsMiddleware')
USE_I18N
True
THOUSAND_SEPARATOR
','
SECRETKEY
u'******_'
LANGUAGE_COOKIE_NAME
'django_language'
USERENA_ACTIVATION_DAYS
3
DEFAULT_INDEX_TABLESPACE
''
TRANSACTIONS_MANAGED
False
LOGGING_CONFIG
'django.utils.log.dictConfig'
SIGNING_BACKEND
'django.core.signing.TimestampSigner'
TEMPLATE_LOADERS
('django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader')
WSGI_APPLICATION
'geoq.wsgi.application'
TEMPLATE_DEBUG
True
X_FRAME_OPTIONS
'SAMEORIGIN'
CSRF_COOKIE_NAME
'csrftoken'
FORCE_SCRIPT_NAME
None
USE_X_FORWARDED_HOST
False
COMPRESS_CSSTIDY_BINARY
'csstidy'
SESSION_COOKIE_SECURE
False
COMPRESS_DEBUG_TOGGLE
'None'
CACHE_MIDDLEWARE_KEYPREFIX
u'******_'
COMPRESS_VERBOSE
False
CSRF_COOKIE_DOMAIN
None
FILE_CHARSET
'utf-8'
DEBUG
True
SESSION_FILE_PATH
None
COMPRESS_JS_FILTERS
['compressor.filters.jsmin.JSMinFilter']
DEFAULT_FILE_STORAGE
'django.core.files.storage.FileSystemStorage'
INSTALLED_APPS
('django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.gis',
'django.contrib.humanize',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'django.contrib.humanize',
'south',
'compressor',
'geoexplorer',
'reversion',
'guardian',
'easy_thumbnails',
'userena',
'bootstrap_toolkit',
'django_select2',
'leaflet',
'jsonfield',
'geoq.accounts',
'geoq.core',
'geoq.maps')
LANGUAGES_BIDI
('he', 'ar', 'fa')
COMMENTS_ALLOW_PROFANITIES
False
COMPRESS_YUI_CSS_ARGUMENTS
''
STATICFILES_DIRS
()
STATIC_URL_FOLDER
''
PREPEND_WWW
False
SECURE_PROXY_SSL_HEADER
None
PASSWORD_RESET_TIMEOUTDAYS
u'******_'
SESSION_COOKIE_HTTPONLY
True
DEBUG_PROPAGATE_EXCEPTIONS
False
MONTH_DAY_FORMAT
'F j'
LOGIN_URL
'/accounts/signin/'
SESSION_EXPIRE_AT_BROWSER_CLOSE
False
TIME_FORMAT
'P'
COMPRESS_STORAGE
'compressor.storage.CompressorFileStorage'
AUTH_USER_MODEL
'auth.User'
DATE_INPUT_FORMATS
('%Y-%m-%d',
'%m/%d/%Y',
'%m/%d/%y',
'%b %d %Y',
'%b %d, %Y',
'%d %b %Y',
'%d %b, %Y',
'%B %d %Y',
'%B %d, %Y',
'%d %B %Y',
'%d %B, %Y')
COMPRESS_CSS_FILTERS
['compressor.filters.css_default.CssAbsoluteFilter']
AUTHENTICATION_BACKENDS
('userena.backends.UserenaAuthenticationBackend',
'guardian.backends.ObjectPermissionBackend',
'django.contrib.auth.backends.ModelBackend')
EMAIL_HOSTPASSWORD
u'******_'
COMPRESS_REBUILD_TIMEOUT
2592000
AUTH_PROFILE_MODULE
'accounts.UserProfile'
CACHE_MIDDLEWARE_ALIAS
'default'
SESSION_SAVE_EVERY_REQUEST
False
NUMBER_GROUPING
0
SESSION_ENGINE
'django.contrib.sessions.backends.db'
CSRF_FAILURE_VIEW
'django.views.csrf.csrf_failure'
CSRF_COOKIE_PATH
'/'
COMPRESS_CACHE_KEYFUNCTION
u'******_'
LOGIN_REDIRECT_URL
'/geoq/'
DECIMAL_SEPARATOR
'.'
COMPRESS_PRECOMPILERS
(('text/less', 'lessc {infile}'),)
COMPRESS_MTIME_DELAY
10
SITE_ID
1
LOCALE_PATHS
()
TEMPLATE_STRING_IF_INVALID
''
LOGOUT_URL
'/geoq'
EMAIL_USE_TLS
False
TEMPLATE_DIRS
('/home/seanwohltman/try2/geoq/geoq/geoq/templates',
'/home/seanwohltman/try2/geoq/geoq/geoq')
FIXTURE_DIRS
()
EMAIL_HOST
'localhost'
DATE_FORMAT
'N j, Y'
MEDIA_ROOT
'/opt/src/pyenv/geoq/geoq-django'
DEFAULT_EXCEPTION_REPORTER_FILTER
'django.views.debug.SafeExceptionReporterFilter'
ADMINS
(('Admin User', 'admin@domain.com'),)
FORMAT_MODULE_PATH
None
DEFAULT_FROM_EMAIL
'webmaster@localhost'
COMPRESS_ROOT
'/usr/src/static'
MEDIA_URL
'/images/'
DATETIME_FORMAT
'N j, Y, P'
COMPRESS_YUI_JS_ARGUMENTS
''
COMPRESS_JS_COMPRESSOR
'compressor.js.JsCompressor'
DISALLOWED_USER_AGENTS
()
ALLOWED_INCLUDE_ROOTS
()
COMPRESS_MINT_DELAY
30
LOGGING
{'disable_existing_loggers': False,
'filters': {'require_debug_false': {'()': 'django.utils.log.RequireDebugFalse'}},
'handlers': {'mail_admins': {'class': 'django.utils.log.AdminEmailHandler',
'filters': ['require_debug_false'],
'level': 'ERROR'}},
'loggers': {'django.request': {'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True}},
'version': 1}
SHORT_DATE_FORMAT
'm/d/Y'
TEST_RUNNER
'django.test.simple.DjangoTestSuiteRunner'
COMPRESS_ENABLED
True
IGNORABLE_404_URLS
()
COMPRESS_OFFLINE
False
TIME_ZONE
'America/New_York'
FILE_UPLOAD_MAX_MEMORY_SIZE
2621440
EMAIL_BACKEND
'django.core.mail.backends.dummy.EmailBackend'
DEFAULT_TABLESPACE
''
TEMPLATE_CONTEXT_PROCESSORS
('django.contrib.auth.context_processors.auth',
'django.core.context_processors.request',
'django.core.context_processors.static',
'django.contrib.messages.context_processors.messages')
SESSION_COOKIE_AGE
1209600
SETTINGS_MODULE
'geoq.settings'
USE_ETAGS
False
SITE_ROOT
'/home/seanwohltman/try2/geoq/geoq/geoq'
LANGUAGES
(('af', 'Afrikaans'),
('ar', 'Arabic'),
('az', 'Azerbaijani'),
('bg', 'Bulgarian'),
('be', 'Belarusian'),
('bn', 'Bengali'),
('br', 'Breton'),
('bs', 'Bosnian'),
('ca', 'Catalan'),
('cs', 'Czech'),
('cy', 'Welsh'),
('da', 'Danish'),
('de', 'German'),
('el', 'Greek'),
('en', 'English'),
('en-gb', 'British English'),
('eo', 'Esperanto'),
('es', 'Spanish'),
('es-ar', 'Argentinian Spanish'),
('es-mx', 'Mexican Spanish'),
('es-ni', 'Nicaraguan Spanish'),
('es-ve', 'Venezuelan Spanish'),
('et', 'Estonian'),
('eu', 'Basque'),
('fa', 'Persian'),
('fi', 'Finnish'),
('fr', 'French'),
('fy-nl', 'Frisian'),
('ga', 'Irish'),
('gl', 'Galician'),
('he', 'Hebrew'),
('hi', 'Hindi'),
('hr', 'Croatian'),
('hu', 'Hungarian'),
('ia', 'Interlingua'),
('id', 'Indonesian'),
('is', 'Icelandic'),
('it', 'Italian'),
('ja', 'Japanese'),
('ka', 'Georgian'),
('kk', 'Kazakh'),
('km', 'Khmer'),
('kn', 'Kannada'),
('ko', 'Korean'),
('lb', 'Luxembourgish'),
('lt', 'Lithuanian'),
('lv', 'Latvian'),
('mk', 'Macedonian'),
('ml', 'Malayalam'),
('mn', 'Mongolian'),
('nb', 'Norwegian Bokmal'),
('ne', 'Nepali'),
('nl', 'Dutch'),
('nn', 'Norwegian Nynorsk'),
('pa', 'Punjabi'),
('pl', 'Polish'),
('pt', 'Portuguese'),
('pt-br', 'Brazilian Portuguese'),
('ro', 'Romanian'),
('ru', 'Russian'),
('sk', 'Slovak'),
('sl', 'Slovenian'),
('sq', 'Albanian'),
('sr', 'Serbian'),
('sr-latn', 'Serbian Latin'),
('sv', 'Swedish'),
('sw', 'Swahili'),
('ta', 'Tamil'),
('te', 'Telugu'),
('th', 'Thai'),
('tr', 'Turkish'),
('tt', 'Tatar'),
('udm', 'Udmurt'),
('uk', 'Ukrainian'),
('ur', 'Urdu'),
('vi', 'Vietnamese'),
('zh-cn', 'Simplified Chinese'),
('zh-tw', 'Traditional Chinese'))
COMPRESS_CLOSURE_COMPILER_BINARY
'java -jar compiler.jar'
FILE_UPLOAD_TEMP_DIR
None
INTERNAL_IPS
()
STATIC_URL
'/static/'
EMAIL_PORT
25
USE_TZ
True
SHORT_DATETIME_FORMAT
'm/d/Y P'
PASSWORDHASHERS
u'******_'
ABSOLUTE_URL_OVERRIDES
{}
CACHE_MIDDLEWARE_SECONDS
600
ANONYMOUS_USER_ID
-1
DATETIME_INPUT_FORMATS
('%Y-%m-%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S.%f',
'%Y-%m-%d %H:%M',
'%Y-%m-%d',
'%m/%d/%Y %H:%M:%S',
'%m/%d/%Y %H:%M:%S.%f',
'%m/%d/%Y %H:%M',
'%m/%d/%Y',
'%m/%d/%y %H:%M:%S',
'%m/%d/%y %H:%M:%S.%f',
'%m/%d/%y %H:%M',
'%m/%d/%y')
EMAIL_HOST_USER
''
PROFANITIESLIST
u'*******'
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 500 page.
I saw this as well -- doing 'python manage.py collectstatic' worked for me.
Updated Readme.md with the command above to fix it. Please let us know if that doesn't work.
UncompressableFileError at / 'font-awesome-2/css/font-awesome.min.css' could not be found in the COMPRESS_ROOT '/usr/src/static' or with staticfiles. Request Method: GET Request URL: http://23.251.153.65:8001/ Django Version: 1.5.4 Exception Type: UncompressableFileError Exception Value:
'font-awesome-2/css/font-awesome.min.css' could not be found in the COMPRESS_ROOT '/usr/src/static' or with staticfiles. Exception Location: /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in get_filename, line 110 Python Executable: /home/seanwohltman/try2/geoq/bin/python Python Version: 2.7.3 Python Path:
['/home/seanwohltman/try2/geoq/geoq', '/home/seanwohltman/try2/geoq/lib/python2.7', '/home/seanwohltman/try2/geoq/lib/python2.7/plat-linux2', '/home/seanwohltman/try2/geoq/lib/python2.7/lib-tk', '/home/seanwohltman/try2/geoq/lib/python2.7/lib-old', '/home/seanwohltman/try2/geoq/lib/python2.7/lib-dynload', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/lib/python2.7/lib-tk', '/home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages', '/home/seanwohltman/try2/geoq/lib/python2.7/site-packages', '/home/seanwohltman/try2/geoq/geoq/geoq', '/home/seanwohltman/try2/geoq/geoq/geoq'] Server time: Tue, 29 Apr 2014 16:14:57 -0400 Error during template rendering
In template /home/seanwohltman/try2/geoq/geoq/geoq/core/templates/core/base.html, error at line 25 'font-awesome-2/css/font-awesome.min.css' could not be found in the COMPRESS_ROOT '/usr/src/static' or with staticfiles. 15 } 16 17 20 21
22 {% bootstrap_stylesheet_tag %} 23 {% bootstrap_stylesheet_tag "responsive" %} 24
25 {% compress css %} 26
27 28 29 {% endcompress %} 30
31 {% compress js %} 32 33 34 {% endcompress %} 35
Traceback Switch to copy-and-paste view
/home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/core/handlers/base.py in get_response response = response.render() ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/response.py in render self.content = self.rendered_content ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/response.py in rendered_content content = template.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in render return self._render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in _render return self.nodelist.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in render bit = self.render_node(node, context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/debug.py in render_node return node.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/loader_tags.py in render return compiled_parent._render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in _render return self.nodelist.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/base.py in render bit = self.render_node(node, context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/django/template/debug.py in render_node return node.render(context) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/templatetags/compress.py in render return self.render_compressed(context, self.kind, self.mode, forced=forced) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/templatetags/compress.py in render_compressed cache_key, cache_content = self.render_cached(compressor, kind, mode, forced=forced) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/templatetags/compress.py in render_cached cache_key = get_templatetag_cachekey(compressor, mode, kind) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/cache.py in get_templatetag_cachekey "templatetag.%s.%s.%s" % (compressor.cachekey, mode, kind)) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/utils/decorators.py in get value = obj.dict[self.name] = self.get(obj) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in cachekey [self.content] + self.mtimes).encode(self.charset), 12) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/utils/decorators.py in __get value = obj.dict[self.name] = self.__get(obj) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in mtimes for kind, value, basename, elem in self.split_contents() ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/css.py in split_contents filename = self.get_filename(basename) ... ▶ Local vars /home/seanwohltman/try2/geoq/local/lib/python2.7/site-packages/compressor/base.py in get_filename self.finders and " or with staticfiles." or ".")) ... ▶ Local vars Request information
GET No GET data POST No POST data FILES No FILES data COOKIES No cookie data META Variable Value RUN_MAIN', mode 'w' at 0x7f625ae83270>
wsgi.multiprocess
'true' SERVER_SOFTWARE 'WSGIServer/0.1 Python/2.7.3' SCRIPT_NAME u'' REQUEST_METHOD
'GET' SERVER_PROTOCOL 'HTTP/1.1' HOME
'/home/seanwohltman' CONTENT_LENGTH
'' VIRTUAL_ENV '/home/seanwohltman/try2/geoq' SHELL
'/bin/bash' SERVER_PORT '8001' HTTP_HOST
'23.251.153.65:8001' HTTP_CACHE_CONTROL
'max-age=0' HTTPACCEPT 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/_;q=0.8' wsgi.version
(1, 0) wsgi.run_once
False SSH_TTY '/dev/pts/1' wsgi.errors <open file '
False HTTP_ACCEPT_LANGUAGE
'en-US,en;q=0.8' MAIL
'/var/mail/seanwohltman' SSH_CONNECTION
'74.93.119.149 59974 10.240.145.161 22' PATH_INFO
u'/' SSH_CLIENT
'74.93.119.149 59974 22' LOGNAME 'seanwohltman' USER
'seanwohltman' QUERY_STRING
'' PATH
'/home/seanwohltman/try2/geoq/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/home/seanwohltman/node_modules/less/bin' PS1 '(geoq)[\e]0;\u@\h: \w\a]${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' TERM
'xterm-256color' HTTP_USER_AGENT 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36' HTTP_CONNECTION 'keep-alive' SERVER_NAME 'geoq1.c.flowing-bazaar-548.internal' REMOTE_ADDR '74.93.119.149' SHLVL
'1' wsgi.url_scheme 'http' SSH_AUTH_SOCK
'/tmp/ssh-rCgC7xhqil/agent.2044' wsgi.input
<socket._fileobject object at 0x4012550> wsgi.multithread
True TZ
'America/NewYork'
'/home/seanwohltman/try2/geoq/bin/paver' LSCOLORS
'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:.tar=01;31:.tgz=01;31:.arj=01;31:.taz=01;31:.lzh=01;31:.lzma=01;31:.tlz=01;31:.txz=01;31:.zip=01;31:.z=01;31:.Z=01;31:.dz=01;31:.gz=01;31:.lz=01;31:.xz=01;31:.bz2=01;31:.bz=01;31:.tbz=01;31:.tbz2=01;31:.tz=01;31:.deb=01;31:.rpm=01;31:.jar=01;31:.war=01;31:.ear=01;31:.sar=01;31:.rar=01;31:.ace=01;31:.zoo=01;31:.cpio=01;31:.7z=01;31:.rz=01;31:.jpg=01;35:.jpeg=01;35:.gif=01;35:.bmp=01;35:.pbm=01;35:.pgm=01;35:.ppm=01;35:.tga=01;35:.xbm=01;35:.xpm=01;35:.tif=01;35:.tiff=01;35:.png=01;35:.svg=01;35:.svgz=01;35:.mng=01;35:.pcx=01;35:.mov=01;35:.mpg=01;35:.mpeg=01;35:.m2v=01;35:.mkv=01;35:.webm=01;35:.ogm=01;35:.mp4=01;35:.m4v=01;35:.mp4v=01;35:.vob=01;35:.qt=01;35:.nuv=01;35:.wmv=01;35:.asf=01;35:.rm=01;35:.rmvb=01;35:.flc=01;35:.avi=01;35:.fli=01;35:.flv=01;35:.gl=01;35:.dl=01;35:.xcf=01;35:.xwd=01;35:.yuv=01;35:.cgm=01;35:.emf=01;35:.axv=01;35:.anx=01;35:.ogv=01;35:.ogx=01;35:.aac=00;36:.au=00;36:.flac=00;36:.mid=00;36:.midi=00;36:.mka=00;36:.mp3=00;36:.mpc=00;36:.ogg=00;36:.ra=00;36:.wav=00;36:.axa=00;36:.oga=00;36:.spx=00;36:_.xspf=00;36:' GATEWAY_INTERFACE
'CGI/1.1' CSRF_COOKIE u'9VDObpa3Tl3Ennu2FSGUSm3Jr966i7gF' OLDPWD
'/home/seanwohltman/try2/geoq' PWD '/home/seanwohltman/try2/geoq/geoq' DJANGO_SETTINGS_MODULE
'geoq.settings' CONTENT_TYPE
'text/plain' wsgi.file_wrapper
'' REMOTE_HOST '' HTTP_ACCEPT_ENCODING
'gzip,deflate,sdch' Settings Using settings module geoq.settings Setting Value COMPRESS_URL
'/static/' LEAFLET_CSS ['/static/leaflet/leaflet-draw/leaflet.draw.css', '/static/leaflet/leaflet-draw/leaflet.draw.css'] COMPRESS_OUTPUT_DIR 'CACHE' COMPRESS_TEMPLATE_FILTER_CONTEXT
{'STATIC_URL': '/static/'} USE_L10N
True COMPRESS_DATA_URI_MAX_SIZE
1024 CSRF_COOKIE_SECURE
False LANGUAGE_CODE
'en-us' ROOT_URLCONF
'geoq.urls' MANAGERS
(('Admin User', 'admin@domain.com'),) COMPRESS_CSS_HASHING_METHOD 'mtime' DEFAULT_CHARSET 'utf-8' SESSION_SERIALIZER
'django.contrib.sessions.serializers.PickleSerializer' STATIC_ROOT '/usr/src/static/' COMPRESS_CLOSURE_COMPILER_ARGUMENTS '' USE_THOUSAND_SEPARATOR
False COMPRESS_OFFLINE_MANIFEST
'manifest.json' ALLOWED_HOSTS
[] MESSAGE_STORAGE 'django.contrib.messages.storage.fallback.FallbackStorage' EMAIL_SUBJECT_PREFIX
'[Django] ' SEND_BROKEN_LINK_EMAILS False STATICFILES_FINDERS ('django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder', 'compressor.finders.CompressorFinder') SESSION_CACHE_ALIAS 'default' COMPRESS_CSSTIDY_ARGUMENTS
'--template=highest' SESSION_COOKIE_DOMAIN
None SESSION_COOKIE_NAME 'sessionid' ADMIN_FOR
() TIME_INPUTFORMATS
('%H:%M:%S', '%H:%M') DATABASES
{'default': {'ENGINE': 'django.contrib.gis.db.backends.postgis', 'HOST': 'localhost', 'NAME': 'geoq', 'OPTIONS': {}, 'PASSWORD': u'***', 'PORT': '5432', 'TEST_CHARSET': None, 'TEST_COLLATION': None, 'TEST_MIRROR': None, 'TEST_NAME': None, 'TIME_ZONE': 'UTC', 'USER': 'geoq'}} COMPRESS_YUI_BINARY 'java -jar yuicompressor.jar' FILE_UPLOAD_PERMISSIONS None FILE_UPLOAD_HANDLERS
('django.core.files.uploadhandler.MemoryFileUploadHandler', 'django.core.files.uploadhandler.TemporaryFileUploadHandler') DEFAULT_CONTENT_TYPE
'text/html' LEAFLET_CONFIG
{'PLUGINS': {'ALL': {'css': ['/static/leaflet/leaflet.css', '/static/leaflet/draw/leaflet.draw.css', '/static/leaflet/leaflet-draw/leaflet.draw.css', '/static/leaflet/leaflet-draw/leaflet.draw.css'], 'js': ['/static/leaflet/leaflet.js', '/static/leaflet/draw/leaflet.draw.js', '/static/leaflet/leaflet.extras.js', '/static/leaflet/leaflet.forms.js', '/static/leaflet/leaflet-draw/leaflet.draw.js', '/static/leaflet/esri-leaflet.min.js']}, 'default': {}, 'is_normalized': True, 'draw': {'css': ['/static/leaflet/leaflet-draw/leaflet.draw.css', '/static/leaflet/leaflet-draw/leaflet.draw.css'], 'js': ['/static/leaflet/leaflet-draw/leaflet.draw.js'], 'repo': 'https://github.com/Leaflet/Leaflet.draw'}, 'esri': {'css': [], 'js': ['/static/leaflet/esri-leaflet.min.js'], 'repo': 'https://github.com/Esri/esri-leaflet'}, 'forms': {'auto-include': False, 'css': ['/static/leaflet/leaflet.css', '/static/leaflet/draw/leaflet.draw.css'], 'js': ['/static/leaflet/leaflet.js', '/static/leaflet/draw/leaflet.draw.js', '/static/leaflet/leaflet.extras.js', '/static/leaflet/leaflet.forms.js']}}} COMPRESS_CSS_COMPRESSOR 'compressor.css.CssCompressor' APPEND_SLASH
True FIRST_DAY_OF_WEEK
0 DATABASE_ROUTERS
[] YEAR_MONTH_FORMAT
'F Y' COMPRESS_OFFLINE_TIMEOUT
31536000 STATICFILES_STORAGE 'django.contrib.staticfiles.storage.StaticFilesStorage' CACHES
{'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}} SERVER_EMAIL
'root@localhost' SESSION_COOKIE_PATH '/' COMPRESS_PARSER 'compressor.parser.AutoSelectParser' COMPRESS_OFFLINE_CONTEXT
{'STATIC_URL': '/static/'} COMPRESS_CACHE_BACKEND
'default' 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', 'geoq.core.middleware.UserPermsMiddleware') USE_I18N
True THOUSAND_SEPARATOR
',' SECRETKEY
u'******_' LANGUAGE_COOKIE_NAME
'django_language' USERENA_ACTIVATION_DAYS 3 DEFAULT_INDEX_TABLESPACE
'' TRANSACTIONS_MANAGED
False LOGGING_CONFIG
'django.utils.log.dictConfig' SIGNING_BACKEND 'django.core.signing.TimestampSigner' TEMPLATE_LOADERS
('django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader') WSGI_APPLICATION
'geoq.wsgi.application' TEMPLATE_DEBUG
True X_FRAME_OPTIONS 'SAMEORIGIN' CSRF_COOKIE_NAME
'csrftoken' FORCE_SCRIPT_NAME
None USE_X_FORWARDED_HOST
False COMPRESS_CSSTIDY_BINARY 'csstidy' SESSION_COOKIE_SECURE
False COMPRESS_DEBUG_TOGGLE
'None' CACHE_MIDDLEWARE_KEYPREFIX u'******_' COMPRESS_VERBOSE
False CSRF_COOKIE_DOMAIN
None FILE_CHARSET
'utf-8' DEBUG
True SESSION_FILE_PATH
None COMPRESS_JS_FILTERS ['compressor.filters.jsmin.JSMinFilter'] DEFAULT_FILE_STORAGE
'django.core.files.storage.FileSystemStorage' INSTALLED_APPS
('django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.gis', 'django.contrib.humanize', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'django.contrib.humanize', 'south', 'compressor', 'geoexplorer', 'reversion', 'guardian', 'easy_thumbnails', 'userena', 'bootstrap_toolkit', 'django_select2', 'leaflet', 'jsonfield', 'geoq.accounts', 'geoq.core', 'geoq.maps') LANGUAGES_BIDI
('he', 'ar', 'fa') COMMENTS_ALLOW_PROFANITIES
False COMPRESS_YUI_CSS_ARGUMENTS
'' STATICFILES_DIRS
() STATIC_URL_FOLDER
'' PREPEND_WWW False SECURE_PROXY_SSL_HEADER None PASSWORD_RESET_TIMEOUTDAYS u'******_' SESSION_COOKIE_HTTPONLY True DEBUG_PROPAGATE_EXCEPTIONS
False MONTH_DAY_FORMAT
'F j' LOGIN_URL
'/accounts/signin/' SESSION_EXPIRE_AT_BROWSER_CLOSE False TIME_FORMAT 'P' COMPRESS_STORAGE
'compressor.storage.CompressorFileStorage' AUTH_USER_MODEL 'auth.User' DATE_INPUT_FORMATS
('%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', '%b %d %Y', '%b %d, %Y', '%d %b %Y', '%d %b, %Y', '%B %d %Y', '%B %d, %Y', '%d %B %Y', '%d %B, %Y') COMPRESS_CSS_FILTERS
['compressor.filters.css_default.CssAbsoluteFilter'] AUTHENTICATION_BACKENDS ('userena.backends.UserenaAuthenticationBackend', 'guardian.backends.ObjectPermissionBackend', 'django.contrib.auth.backends.ModelBackend') EMAIL_HOSTPASSWORD u'******_' COMPRESS_REBUILD_TIMEOUT
2592000 AUTH_PROFILE_MODULE 'accounts.UserProfile' CACHE_MIDDLEWARE_ALIAS
'default' SESSION_SAVE_EVERY_REQUEST
False NUMBER_GROUPING 0 SESSION_ENGINE
'django.contrib.sessions.backends.db' CSRF_FAILURE_VIEW
'django.views.csrf.csrf_failure' CSRF_COOKIE_PATH
'/' COMPRESS_CACHE_KEYFUNCTION u'******_' LOGIN_REDIRECT_URL
'/geoq/' DECIMAL_SEPARATOR
'.' COMPRESS_PRECOMPILERS
(('text/less', 'lessc {infile} {outfile}'),) COMPRESS_MTIME_DELAY
10 SITE_ID 1 LOCALE_PATHS
() TEMPLATE_STRING_IF_INVALID
'' LOGOUT_URL
'/geoq' EMAIL_USE_TLS
False TEMPLATE_DIRS
('/home/seanwohltman/try2/geoq/geoq/geoq/templates', '/home/seanwohltman/try2/geoq/geoq/geoq') FIXTURE_DIRS
() EMAIL_HOST
'localhost' DATE_FORMAT 'N j, Y' MEDIA_ROOT
'/opt/src/pyenv/geoq/geoq-django' DEFAULT_EXCEPTION_REPORTER_FILTER
'django.views.debug.SafeExceptionReporterFilter' ADMINS
(('Admin User', 'admin@domain.com'),) FORMAT_MODULE_PATH
None DEFAULT_FROM_EMAIL
'webmaster@localhost' COMPRESS_ROOT
'/usr/src/static' MEDIA_URL
'/images/' DATETIME_FORMAT 'N j, Y, P' COMPRESS_YUI_JS_ARGUMENTS
'' COMPRESS_JS_COMPRESSOR
'compressor.js.JsCompressor' DISALLOWED_USER_AGENTS
() ALLOWED_INCLUDE_ROOTS
() COMPRESS_MINT_DELAY 30 LOGGING {'disable_existing_loggers': False, 'filters': {'require_debug_false': {'()': 'django.utils.log.RequireDebugFalse'}}, 'handlers': {'mail_admins': {'class': 'django.utils.log.AdminEmailHandler', 'filters': ['require_debug_false'], 'level': 'ERROR'}}, 'loggers': {'django.request': {'handlers': ['mail_admins'], 'level': 'ERROR', 'propagate': True}}, 'version': 1} SHORT_DATE_FORMAT
'm/d/Y' TEST_RUNNER 'django.test.simple.DjangoTestSuiteRunner' COMPRESS_ENABLED
True IGNORABLE_404_URLS
() COMPRESS_OFFLINE
False TIME_ZONE
'America/New_York' FILE_UPLOAD_MAX_MEMORY_SIZE 2621440 EMAIL_BACKEND
'django.core.mail.backends.dummy.EmailBackend' DEFAULT_TABLESPACE
'' TEMPLATE_CONTEXT_PROCESSORS ('django.contrib.auth.context_processors.auth', 'django.core.context_processors.request', 'django.core.context_processors.static', 'django.contrib.messages.context_processors.messages') SESSION_COOKIE_AGE
1209600 SETTINGS_MODULE 'geoq.settings' USE_ETAGS
False SITE_ROOT
'/home/seanwohltman/try2/geoq/geoq/geoq' LANGUAGES
(('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')) COMPRESS_CLOSURE_COMPILER_BINARY
'java -jar compiler.jar' FILE_UPLOAD_TEMP_DIR
None INTERNAL_IPS
() STATIC_URL
'/static/' EMAIL_PORT
25 USE_TZ
True SHORT_DATETIME_FORMAT
'm/d/Y P' PASSWORDHASHERS
u'******_' ABSOLUTE_URL_OVERRIDES
{} CACHE_MIDDLEWARE_SECONDS
600 ANONYMOUS_USER_ID
-1 DATETIME_INPUT_FORMATS
('%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S.%f', '%Y-%m-%d %H:%M', '%Y-%m-%d', '%m/%d/%Y %H:%M:%S', '%m/%d/%Y %H:%M:%S.%f', '%m/%d/%Y %H:%M', '%m/%d/%Y', '%m/%d/%y %H:%M:%S', '%m/%d/%y %H:%M:%S.%f', '%m/%d/%y %H:%M', '%m/%d/%y') EMAIL_HOST_USER '' PROFANITIESLIST
u'*******' You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 500 page.