Alright, I have two servers, one development, one (attempting to be) production.
They both run gentoo, the development is x86, and production amd64. The same satchmo project on both with the exact database (pg_dump'd) with the same versions of the django apps. On the dev server it functions properly, and on the production it fails with SettingNotFound trying to find PRODUCT/CATEGORY_SLUG They are both identically configured excluding 32bit/64bit. Any suggestions, i have tried every cache backend on the production server to no avail. On the dev server the CACHE_BACKEND parameter isn't even set and it works properly. Is there any other ways to debug the SettingNotFound? Traceback: Environment: Request Method: GET Request URL: http://www.bluecollarcreations.com/ Django Version: 1.1.1 Python Version: 2.6.2 Installed Applications: ['django.contrib.sites', 'satchmo_store.shop', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.admindocs', 'django.contrib.contenttypes', 'django.contrib.comments', 'django.contrib.sessions', 'django.contrib.sitemaps', 'registration', 'keyedcache', 'livesettings', 'l10n', 'sorl.thumbnail', 'satchmo_store.contact', 'tax', 'tax.modules.no', 'tax.modules.area', 'tax.modules.percent', 'shipping', 'product', 'payment', 'payment.modules.giftcertificate', 'satchmo_utils', 'app_plugins', 'dbtemplates', 'reversion'] Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.locale.LocaleMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.middleware.doc.XViewMiddleware', 'threaded_multihost.middleware.ThreadLocalMiddleware', 'satchmo_store.shop.SSLMiddleware.SSLRedirect') Traceback: File "/usr/lib64/python2.6/site-packages/django/core/handlers/base.py" in get_response 83. request.path_info) File "/usr/lib64/python2.6/site-packages/django/core/urlresolvers.py" in resolve 216. for pattern in self.url_patterns: File "/usr/lib64/python2.6/site-packages/django/core/urlresolvers.py" in _get_url_patterns 245. patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module) File "/usr/lib64/python2.6/site-packages/django/core/urlresolvers.py" in _get_urlconf_module 240. self._urlconf_module = import_module (self.urlconf_name) File "/usr/lib64/python2.6/site-packages/django/utils/importlib.py" in import_module 35. __import__(name) File "/var/www/www.bluecollarcreations.com/bcc/urls.py" in <module> 2. from satchmo_store.urls import urlpatterns File "/usr/lib64/python2.6/site-packages/Satchmo-0.9_0-py2.6.egg/ satchmo_store/urls/__init__.py" in <module> 27. from base import urlpatterns as basepatterns File "/usr/lib64/python2.6/site-packages/Satchmo-0.9_0-py2.6.egg/ satchmo_store/urls/base.py" in <module> 8. from product.urls.base import adminpatterns as prodpatterns File "/usr/lib64/python2.6/site-packages/Satchmo-0.9_0-py2.6.egg/ product/urls/__init__.py" in <module> 8. catbase = r'^' + config_value('PRODUCT','CATEGORY_SLUG') + '/' File "/usr/lib64/python2.6/site-packages/Satchmo-0.9_0-py2.6.egg/ livesettings/functions.py" in config_value 205. return config_get(group, key).value File "/usr/lib64/python2.6/site-packages/Satchmo-0.9_0-py2.6.egg/ livesettings/functions.py" in config_get 150. return ConfigurationSettings().get_config(group, key) File "/usr/lib64/python2.6/site-packages/Satchmo-0.9_0-py2.6.egg/ livesettings/functions.py" in get_config 67. raise SettingNotSet('%s config group does not exist' % group) Exception Type: SettingNotSet at / Exception Value: --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en -~----------~----~----~----~------~----~------~--~---
