Re: Digest for satchmo-users@googlegroups.com - 1 update in 1 topic

2018-03-07 Thread Daniel Purcell
Hi Mike,

I haven't seen this happen before. Could it be something to do with your
cache backend being a little too voliatle? What is your cache backend?

On Wed, Mar 7, 2018 at 7:29 AM,  wrote:

> satchmo-users@googlegroups.com
> 
>  Google
> Groups
> 
> 
> Topic digest
> View all topics
> 
>
>- Session is forgetting? <#m_4413988285660307939_group_thread_0> - 1
>Update
>
> Session is forgetting?
> 
> Mike Hostetler : Mar 06 04:42PM -0600
>
> Not sure if anyone is still on this list but I'll give it a shot...
>
> I still have a customer on Satchmo (they haven't been willing to pay for a
> rewrite to something else). Naturally they have had problems with old TLS
> on their payments provider. I moved them to ActivePython 2.6 and the
> gunicorn server that comes with it. That has TLS 1.2 and works beautifully.
>
> But one in a while, a customer will look at his cart, hit the checkout
> button, and step 1 of checkout says "your cart is empty" and it's only
> obviously not. Restarting gunicorn fixes it.
>
> I looked at the code and it stores the cart in the user session and in step
> 1 gets it back out. So it seems to lose it.
>
> Anyone see this before (with or without Satchmo)? Is something with
> gunicorn causing it to fall out?
> Back to top <#m_4413988285660307939_digest_top>
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page
> 
> .
> To unsubscribe from this group and stop receiving emails from it send an
> email to satchmo-users+unsubscr...@googlegroups.com.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to satchmo-users+unsubscr...@googlegroups.com.
To post to this group, send email to satchmo-users@googlegroups.com.
Visit this group at https://groups.google.com/group/satchmo-users.
For more options, visit https://groups.google.com/d/optout.


Re: Digest for satchmo-users@googlegroups.com - 1 update in 1 topic

2016-09-03 Thread Daniel Purcell
Hi Puneet,

Run a 'manage.py syncdb' or create the appropriate table in your database.

On Sat, Sep 3, 2016 at 8:26 AM,  wrote:

> satchmo-users@googlegroups.com
> 
>  Google
> Groups
> 
> 
> Topic digest
> View all topics
> 
>
>- Error : configurable_configurableproduct' doesn't exist
><#m_-7265512838015596048_group_thread_0> - 1 Update
>
> Error : configurable_configurableproduct' doesn't exist
> 
> Puneet : Sep 03 01:30PM +0530
>
> HI All,
>
> I am getting below error while trying to delete a product and not able to
> find source of this error. The site was working perfectly not even sure why
> it started coming recently.
>
> DatabaseError: (1146, "Table 'live_battery.configurable_
> configurableproduct'
> doesn't exist")
>
> Can someone help me with this ?
>
> --
> Thanks
> Puneet
> http://letsbuybattery.com
> Back to top <#m_-7265512838015596048_digest_top>
> You received this digest because you're subscribed to updates for this
> group. You can change your settings on the group membership page
> 
> .
> To unsubscribe from this group and stop receiving emails from it send an
> email to satchmo-users+unsubscr...@googlegroups.com.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to satchmo-users+unsubscr...@googlegroups.com.
To post to this group, send email to satchmo-users@googlegroups.com.
Visit this group at https://groups.google.com/group/satchmo-users.
For more options, visit https://groups.google.com/d/optout.


Re: Updating Satchmo/Django store to SHA-256 and G5 Root Certificate

2016-08-16 Thread Daniel Purcell
Give this a try:

import requests
r = requests.get("https://tlstest.paypal.com;)
print r.status_code
print r.content


It should print out 200 for the status code, and "PayPal_Connection_OK" for 
the content.

I'd be happy to learn more about the satchmo project you've inherited. 
Please PM me.

Sincerely,

Dan 


On Tuesday, August 9, 2016 at 11:54:06 AM UTC-6, jc wrote:
>
> I have a Satchmo/Django e-commerce store that I've sort of inherited. :/ 
> The client got an email from PayPal recently stating that they will be 
> updating fromm SHA-1 to SHA-256 and changing to a G5 Root Certificate as 
> well. I will need to update the store (probably specifically the PayPal 
> module?) before the change over. Looks like the app that was installed is 
> named: payment.modules.paypal
>
> I need advice/help form someone very familar with Satchmo or Django or 
> both on how to update this as I'm somewhat clueless at the moment. For what 
> it's worth, I'm guessing all of the work will be done inside the folder 
> named /satchmo/apps/payment/modules/paypal? Any and all help is 
> appreciated.
>
> Here is the link the PayPal info: 
> https://www.paypal-knowledge.com/infocenter/index?page=content=true=FAQ1766=en_US
>

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to satchmo-users+unsubscr...@googlegroups.com.
To post to this group, send email to satchmo-users@googlegroups.com.
Visit this group at https://groups.google.com/group/satchmo-users.
For more options, visit https://groups.google.com/d/optout.


Re: Updating Satchmo/Django store to SHA-256 and G5 Root Certificate

2016-08-10 Thread Daniel Purcell
As long as your system and python libraries work with SHA-256, your Satchmo 
store should be just fine.  From what I understand, this isn't specific to 
the PayPal implementation in Satchmo, but the way the Python libraries 
connect to the PayPal API.  

On Tuesday, August 9, 2016 at 11:54:06 AM UTC-6, jc wrote:
>
> I have a Satchmo/Django e-commerce store that I've sort of inherited. :/ 
> The client got an email from PayPal recently stating that they will be 
> updating fromm SHA-1 to SHA-256 and changing to a G5 Root Certificate as 
> well. I will need to update the store (probably specifically the PayPal 
> module?) before the change over. Looks like the app that was installed is 
> named: payment.modules.paypal
>
> I need advice/help form someone very familar with Satchmo or Django or 
> both on how to update this as I'm somewhat clueless at the moment. For what 
> it's worth, I'm guessing all of the work will be done inside the folder 
> named /satchmo/apps/payment/modules/paypal? Any and all help is 
> appreciated.
>
> Here is the link the PayPal info: 
> https://www.paypal-knowledge.com/infocenter/index?page=content=true=FAQ1766=en_US
>

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to satchmo-users+unsubscr...@googlegroups.com.
To post to this group, send email to satchmo-users@googlegroups.com.
Visit this group at https://groups.google.com/group/satchmo-users.
For more options, visit https://groups.google.com/d/optout.


Re: Next steps for Satchmo

2014-04-29 Thread Daniel Purcell
That's great, Chris!  I can dedicate some time to improve Satchmo if you 
like. We've made quite a bit of changes and enhancements ourselves in the 
last few months and I'd be very happy to share them with you... changes to 
discount codes, more shipping options, new payment processors, etc.

On Monday, April 28, 2014 8:12:47 AM UTC-6, Chris Moffitt wrote:

 As everyone knows, it's been a while since I spent much time on Satchmo. I 
 recently spent some time getting myself back in the swing of things and 
 hope to start making some forward progress with Satchmo. To be clear, I 
 still would appreciate any and all efforts to help but wanted to let folks 
 know I'm going to start plugging away in the days/weeks/months ahead.

 Since I've been out of the loop a while, the biggest thing I would like to 
 do is get Satchmo working with Django 1.6. I have made some updates to the 
 supporting packages and updated them in PYPI and would like to get a newer 
 version of Satchmo out there as well.

 A couple of thoughts I've had:
 - Should we migrate from using PIL to Pillow? It looks like pillow is 
 being updated more and is more installable so this seems like a 
 straightforward suggestion but I am curious if anyone has any concerns with 
 this approach.
 - I am considering wrapping django-signals-ahoy into Satchmo. It would be 
 one less dependency and since it is relatively simple, I don't see the 
 harm. Any thoughts here?
 - Are there any other watchouts people have after they have started using 
 Django 1.6 with respect to Satchmo?

 Finally, I'd appreciate any help with triaging bugs in bitbucket. If you 
 have bugs or issues that are still valid, feel free to update tickets. 

 Please chime in with thoughts or issues. I'd love to try to get a little 
 momentum going again.

 Thanks,
 Chris


-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to satchmo-users+unsubscr...@googlegroups.com.
To post to this group, send email to satchmo-users@googlegroups.com.
Visit this group at http://groups.google.com/group/satchmo-users.
For more options, visit https://groups.google.com/d/optout.


Amazon Product Feed support?

2013-11-07 Thread Daniel Purcell
Hi All,

I have an online store using Satchmo's Google product feed feature.  I want 
to create a product feed for Amazon.com.  Has anyone out there by chance 
created a product feed for Amazon? If not, would anyone be interested in 
collaborating with me on this feature?

-Dan

-- 
You received this message because you are subscribed to the Google Groups 
Satchmo users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to satchmo-users+unsubscr...@googlegroups.com.
To post to this group, send email to satchmo-users@googlegroups.com.
Visit this group at http://groups.google.com/group/satchmo-users.
For more options, visit https://groups.google.com/groups/opt_out.