On Thu, Sep 11, 2008 at 3:27 PM, erikcw <[EMAIL PROTECTED]> wrote:
>
> I'm also running into this issue, but none of the things you tried are
> working for me.
>
> Has anyone discovered the cause of the problem?
>
I'm not seeing the problem here. Try this:
$ ./manage.py shell
In [1]: from satchmo.shop.utils import is_multihost_enabled
In [2]: is_multihost_enabled
Out[2]: <function is_multihost_enabled at 0x194d8f0>
In [3]: is_multihost_enabled()
Out[3]: False
In [4]: from django.templatetags.satchmo_adminorder_tags import *
In [5]: import satchmo
In [6]: print satchmo.__file__
/opt/frameworks/satchmo/__init__.pyc
=====
If you have any errors, then something is wrong with your Satchmo. Do you
possibly have the wrong branch or multiple versions checked out? You should
have trunk, not any branch. That's why I had you print the __file__ for
Satchmo. Look at that path. If you still have problems, then try this
(from commandline, not ipython)
$ cat satchmo/shop/utils.py
from django.contrib.sites.models import SiteManager
def is_multihost_enabled():
return getattr(SiteManager, 'MULTIHOST', False)
======
If you don't see that function, then something is most definitely messed up
with your checkout.
+Bruce
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---