Thanks for the suggestions. Have tried getting trunk again and going into large project directory but got Error: No module named testimonials
Tried copying settings.py and local setting to original project (just changing database settings) and same problem. Finally got it to syncdb but removed too many apps for it to run! Will try tomorrow with base settings this time. The-Black-Book:mystore2 phoebebr$ python manage.py syncdb Wed, 14 Jan 2009 01:44:05 root INFO Satchmo Started Wed, 14 Jan 2009 01:44:05 root INFO Satchmo Started Error: No module named typogrify The-Black-Book:mystore2 phoebebr$ python manage.py syncdb Wed, 14 Jan 2009 01:44:40 root INFO Satchmo Started Wed, 14 Jan 2009 01:44:40 root INFO Satchmo Started Error: No module named large The-Black-Book:mystore2 phoebebr$ python manage.py syncdb it worked! On Jan 13, 6:46 pm, Remy Giard <[email protected]> wrote: > You should have 'satchmo_ext.recentlist' to the INSTALLED_APPS or > remove the context_processor named > 'satchmo_ext.recentlist.context_processors.recent_products'. > > On Jan 13, 4:31 am, phoebebright <[email protected]> wrote: > > > > > > > Can you let me know the apps you missed as I have the same error > > trying to get into any area of the site. The setting is PRODUCT, > > RECENT_MAX. Have been through the installation instructions twice > > yesterday with current svn trunk and still getting them same error. > > > Thanks. > > > On Jan 12, 10:04 pm, Shankar Dhanasekaran <[email protected]> > > wrote: > > > > Nevermind. I missed a few apps, and adding the rest solved the problem. > > > > thanks > > > shakthi > > > > ----- Original Message ----- > > > From: "Shankar Dhanasekaran" <[email protected]> > > > To: "satchmo-users" <[email protected]> > > > Sent: Tuesday, January 13, 2009 2:59:48 AM GMT +05:30 Chennai, Kolkata, > > > Mumbai, New Delhi > > > Subject: SettingNotSet Error for products page > > > > Am getting SettingNotSet error when I visit a product page. Please can > > > anyone shed some light on it?http://dpaste.com/108256/ > > > > **************** > > > SettingNotSet at /shop/product/krishna/ > > > > Request Method: GET > > > Request URL: http://127.0.0.1:8000/shop/product/krishna/ > > > Exception Type: SettingNotSet > > > Exception Value: > > > > Exception Location: ../../apps/livesettings/functions.py in > > > get_config, line 67 > > > > ****************** > > > > Here is the revelant code from livesettings/function.py ln 67 that raises > > > this exception: > > > > *********** > > > def get_config(self, group, key): > > > try: > > > if isinstance(group, values.ConfigurationGroup): > > > group = group.key > > > > cg = self.settings.get(group, None) > > > if not cg: > > > raise SettingNotSet('%s config group does not exist' > > > % group) > > > > else: > > > return cg[key] > > > except KeyError: > > > raise SettingNotSet('%s.%s' % (group, key)) > > > > ********* > > > > thanks > > > shakthi > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
