Satchmo Multisites

2010-04-26 Thread Alvaro
Hi

I'm trying to find some documentation about how Multisites works in
Satchmo but I'm not able to find any good starting point. I'd like to
know what the scope of the mutisites implementation currently in
place, how to handle the product catalog, payment  shipping methods
etc

Can anybody give me some hint or where can I start looking for?.


Regards

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Template for order summary

2010-04-26 Thread GuyBrush

Hello,

Where is the template for the final order summary that gets displayed 
after a successful payment?


Thank you

--
You received this message because you are subscribed to the Google Groups Satchmo 
users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: 5 minute delay on order confirmation

2010-04-26 Thread Alex Robbins
I had an error like this one time. It was due to mod_wsgi being
unhappy if data was posted but the POST dict wasn't ever accessed. The
five minutes is the timeout on your socket.
http://bitbucket.org/chris1610/satchmo/issue/951/mod_wsgi-thread-deadlocking-issue

Maybe you are seeing a similar issue?
--
Alex Robbins
5Q Communications, Inc.
http://www.5Qcommunications.com/
alex.robb...@5qcommunications.com
800-747-4214 ext 913 (p)
http://www.ask5q.com/twitter/



On Mon, Apr 26, 2010 at 11:51 AM, Christoph Schindler h...@30hopsmax.at wrote:
 Hi!

 Posting the confirm/ form takes exactly 5 minutes in my Satchmo
 installation. The following redirect to success/ takes a fraction of a
 second.

 This happens with the test module as well as the COD module.

 The log entry (Processing COD Payment transaction...) happens
 immediately.

 I have _no_ idea where to start looking into this. Any hints would be
 greatly appreciated!

 thx!hop

 --
 the pen is mightier than the pigs

 --
 You received this message because you are subscribed to the Google Groups 
 Satchmo users group.
 To post to this group, send email to satchmo-us...@googlegroups.com.
 To unsubscribe from this group, send email to 
 satchmo-users+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/satchmo-users?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: 5 minute delay on order confirmation

2010-04-26 Thread Christoph Schindler
On Mon, Apr 26, 2010 at 12:52:58PM -0500, Alex Robbins wrote:
 I had an error like this one time. It was due to mod_wsgi being
 unhappy if data was posted but the POST dict wasn't ever accessed. The
 five minutes is the timeout on your socket.
 http://bitbucket.org/chris1610/satchmo/issue/951/mod_wsgi-thread-deadlocking-issue
 
 Maybe you are seeing a similar issue?

You are my hero!

hop

-- 
the pen is mightier than the pigs

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: 5 minute delay on order confirmation

2010-04-26 Thread Alex Robbins
I wonder if this is something that should/could be handled in django's
wsgi.py mod_wsgi handler? I don't really know who to blame for the
problem, django or mod_wsgi, or someone else?

Anyway, it probably be good to file a bug report for the view you are
seeing this on, so Chris can add a useless POST.copy() like he did to
fix it when I had the problem.

Alex
--
Alex Robbins
5Q Communications, Inc.
http://www.5Qcommunications.com/
alex.robb...@5qcommunications.com
800-747-4214 ext 913 (p)
http://www.ask5q.com/twitter/



On Mon, Apr 26, 2010 at 1:48 PM, Christoph Schindler h...@30hopsmax.at wrote:
 On Mon, Apr 26, 2010 at 12:52:58PM -0500, Alex Robbins wrote:
 I had an error like this one time. It was due to mod_wsgi being
 unhappy if data was posted but the POST dict wasn't ever accessed. The
 five minutes is the timeout on your socket.
 http://bitbucket.org/chris1610/satchmo/issue/951/mod_wsgi-thread-deadlocking-issue

 Maybe you are seeing a similar issue?

 You are my hero!

 hop

 --
 the pen is mightier than the pigs

 --
 You received this message because you are subscribed to the Google Groups 
 Satchmo users group.
 To post to this group, send email to satchmo-us...@googlegroups.com.
 To unsubscribe from this group, send email to 
 satchmo-users+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/satchmo-users?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.



Re: Template for order summary

2010-04-26 Thread Chris Moffitt
Django debug toolbar is your friend here. It really is useful for figuring
out which templates are being rendered.

In this case, I think you're talking about this one -
http://www.bitbucket.org/chris1610/satchmo/src/tip/satchmo/apps/payment/templates/shop/checkout/success.html

-Chris

On Mon, Apr 26, 2010 at 9:46 AM, GuyBrush guybrush@gmail.com wrote:

 Hello,

 Where is the template for the final order summary that gets displayed after
 a successful payment?

 Thank you

 --
 You received this message because you are subscribed to the Google Groups
 Satchmo users group.
 To post to this group, send email to satchmo-us...@googlegroups.com.
 To unsubscribe from this group, send email to
 satchmo-users+unsubscr...@googlegroups.comsatchmo-users%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/satchmo-users?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To post to this group, send email to satchmo-us...@googlegroups.com.
To unsubscribe from this group, send email to 
satchmo-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.