I'm upgrading to the latest satchmo including the new changes to the
installed_apps but I'm getting a SettingNotSet Error :(.
It hapens from this setting:
maxrecent = config_value('PRODUCT','RECENT_MAX')
I'd previously had the apps for configurable products installed but
the new version seems not to need those? I think I'm probably missing
an INSTALLED_APP. Here's my list (same as the documentation suggests)
INSTALLED_APPS = (
'django.contrib.sites',
'satchmo_store.shop',
'django.contrib.admin',
'django.contrib.auth',
'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',
)
Anyone know what's missing?
Thanks