We just finished banging our heads against the wall with this one. Here are the solutions that Google didn't have anything explicit on. Two errors occurred out of the box when requesting http://site.com/admin/print/invoice/ <id>:
1. /usr/lib/python2.5/urllib.py can't find file ''. We forget what the whole error was but basically it came down to the LOGO_URI not being set. Just go into the admin settings and tell it where your logo is (we had it hardcoded into our templates so hadn't bothered with that field before). 2. UnicodeDecodeError from Django. If this happens just make sure you have DEFAULT_CHARSET = 'utf-8' in your settings module. We previously had DEFAULT_CHARSET = 'UTF-8', which was apparently wrong. Lowercase 'utf-8' is correct. Hope that saves somebody some time! Versions: Django 1.0.2, Satchmo 0.8.1 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
