Satchmo is an open source Python framework for e-commerce web applications--it is built on top of the Django project. Use this tag for questions regarding Satchmo which are not more generally applicable to Django.

learn more… | top users | synonyms

0
votes
1answer
45 views

Attribute Error 'module' object has no attribute 'DateField'

I'm trying to extend an admin definition in Satchmo/Django and am getting the error "Attribute Error 'module' object has no attribute 'DateField'" trying to add a formfield_override to ProductOptions: ...
-2
votes
0answers
63 views

Are there any comparisons between Django satchmo and magento framework for ecommerce in the Indian landscape [closed]

The best yet highly incomplete comparison I could find was at: http://vschart.com/compare/satchmo-project/vs/magento and http://www.readncode.com/blog/the-state-of-ecommerce-in-django/ It is ...
1
vote
0answers
34 views

Django Satchmo DeserializationError when doing syncdb

When I do python manage.py syncdb it shows me this error: DeserializationError: could not determine a constructor for the tag 'tag:yaml.org,2002:python/long' I've installed and reinstalled ...
2
votes
1answer
37 views

How to override Django's signal handler?

in a Django shop application there gets registered signal handler to some action like adding an item to the cart. I'd like to replace this handler with my own version in localsite/models.py, ie. ...
0
votes
2answers
47 views

How can I debut a templatesyntax error while setting up satchmo?

I am trying to install satchmo using the instructions given in the site. Everything works fine except the admin part. The moment I hit http://<SERVER_NAME>/admin, I get the following error: ...
0
votes
0answers
21 views

Using only payment gateway through satchmo?

I want a payment gateway for my Django app. But my web app is completely different from a shopping. Do i need to need to customize it? I need just the payment app nothing else of satchmo. Is there ...
1
vote
0answers
73 views

Why would sending email from a django listener cause a broken pipe when invoked by ajax?

I have a django listener that sends an email. It works perfectly under normal circumstances, but when it is triggered by AJAX, I see this error on the console: [Errno 32] Broken pipe I am using ...
1
vote
0answers
51 views

satchmo no such table

When ever i goto the admin and click i on any of the satchmo links i get DatabaseError at /admin/product/category/ no such table: product_category Request Method: GET Request URL: ...
1
vote
1answer
77 views

satchmo mail.py send html email instead of text email

For my current satchmo store, I would like to send html email instead of all the txt email. By the looks of the satchmo_store account registration code, all the emails are hardcoded and uses .txt ...
1
vote
1answer
79 views

How to construct a full URL in django

I need to get django to send an email which contains a URL like this http://www.mysite.org/history/ Where 'history' is obtained like so: history_url = urlresolvers.reverse('satchmo_order_history') ...
1
vote
0answers
73 views

Get rid of default view in Satchmo / Django?

just curious what's the proper/transparent way to get plain 404 error instead of view for the pre-defined url ? The default install of Satchmo handles /quickorder url with a cart view. I would like ...
0
votes
0answers
57 views

Migrating a satchmo store from sqlite3 to mysql

I have a fully functional satchmo store running on sqlite3. I need to change to mysql though. Whether I create a new database or port the old database, I get http error 500s in all sorts of places. ...
0
votes
0answers
141 views

How to integrate Satchmo and Django CMS

I'm trying to get Satchmo to work inside of Django-CMS as a plugin or an apphook. I have had some success and do get the sample satchmo to run by itself. When moving inside of Django CMS, it loads a ...
0
votes
1answer
108 views

Django products app with variable depth category hierarchy and arbitrary attributes per category

I'm starting work on a product catalog built in Django for a client that needs: 1- a variable depth category / subcategory structure, so the tree could look like: cat 1 > subcat 1 > subsubcat 1 > ...
0
votes
1answer
67 views

Enabling Satchmo Shipping Module Not from admin interface

I am using Satchmo in Django. I want to activate the UPS shipping module in it or make it the default shipping module in the using the settings file. But, I do not want to use the admin interface to ...
0
votes
0answers
373 views

E-commerce solutions comparison: Satchmo vs django-lfs [closed]

For my e-commerce site, I have to make decision between two solutions: http://www.satchmoproject.com/ and http://www.getlfs.com/ Can somebody tell me which solution is better? Any advice or tips ...
1
vote
1answer
204 views

satchmo nginx redirect to https then to http and back

Im having a weird issue with a django project called satchmo, Im deploying with nginx and uwsgi. Whats happening is that the application does respond and it redirects to https and then to http and ...
0
votes
1answer
66 views

Use Satchmo subscription to the store itself

I'm trying to set up Satchmo, and I found this cool Subscription Product, but what I want is make a members-only section on the site (a multiple store website) itself. In other words, I want the users ...
0
votes
1answer
63 views

What is the most stable release of Satchmo?

I am running, or trying to run, Satchmo 9.2, and deployment is turning out to be a slightly bigger challenge than I bargained for. I've errored out on fcgi, admittedly probably due to my own ignorance ...
0
votes
1answer
63 views

Is there a HOWTO to FCGI for deploying Satchmo?

https://docs.djangoproject.com/en/dev/howto/deployment/fastcgi/ details some setup for FCGI, but while it has material for the Apache config file, it omits the FCGI. How can I create a site.fcgi file ...
1
vote
1answer
474 views

Can anyone explain this error message deploying a Satchmo project under Gunicorn?

I'm trying to easily deploy a Satchmo project, perhaps with Apache server-based reverse proxy / port forwarding for a VirtualHost, and am having trouble using Gunicorn: jonathan@li393-189:~/store$ ...
5
votes
2answers
474 views

fk_name 'user' is not a ForeignKey to <class 'satchmo_store.contact.models.Contact'>

I am using django 1.3.1 and satchmo 0.9.2. I used the default model that ships with Satchmo called Contact. I created a satchmo_mod app, and an admin.py file. pip install django==1.3.1 pip install -r ...
0
votes
1answer
72 views

Satchmo Shipping Module Order Information

In my shipping module I'm trying to check the payment type and only return true for valid() if the payment type is not COD. Basically, I only want to give shipping choices of Local Delivery or Local ...
0
votes
0answers
47 views

Split-payments in satchmo

Has anyone done this before? Is it possible? Let me explain a bit more: If an order costs $100 the user can decide to pay $50 with one card, $20 with a second card and $30 with another (This is ...
0
votes
0answers
49 views

Satchmo custom tax depending on web service response. How to modify tax on cart item add?

I have this Satchmo app and the client is using Avalara tax services (basically what this does is take a zip code, product price and return the appropiate tax according to the region in the US). So my ...
1
vote
0answers
216 views

CSRF protection causing “Type mismatch error”

In the Satchmo code (satchmo/satchmo/apps/satchmo_store/contact/templates/contact/_state_js.html) the following JavaScript is causing errors in Internet Explorer version 6: /** * Required for ...
-1
votes
1answer
126 views

Name 'Order' is not defined

I have this error Name 'Order' is not defined in the following claue: try: order = Order.objects.from_request(request) cart = OrderCart(order) ...
0
votes
1answer
54 views

Contact getting hijacked when a new account is created

In my Satchmo project, I have a nasty bug where one of the rows in the contact_contact table is getting re-allocated to a new user. It happens if I have logged in to the store in one browser window, ...
0
votes
1answer
46 views

Queryset equivalent of SQL

I'm trying to improve the performance of this code: orderitems = OrderItem.objects.filter(order__contact=contact) for orderitem in orderitems: try: pv = ...
0
votes
1answer
44 views

Using querysets properly

I'm pretty sure the following code can be done much more efficiently using querysets. I just don't know how. Any suggestions? Here's my code: orders = Order.objects.filter(contact=contact) for order ...
0
votes
1answer
121 views

Attaching a .png file to an email sent by satchmo

In a Satchmo Store, I need to attach a small .png (a barcode) to an email that django sends on completion of the order. The email is formatted in HTML using send_order_confirmation() which calls ...
0
votes
1answer
244 views

In satchmo, How to display price in featured products, home page and category page of products

I used {% if sale %} <strike id="fullprice" style="display: block;"> {{ product|discount_price:""|currency }} </strike> {% endif %} <span id="price">{{ ...
0
votes
1answer
192 views

Running Satchmo Store

Python2.7 , Django1.4 Browser: A server error occurred. Please contact the administrator. Server Error: File "/home/edinteri/public_html/old/boxdecor/admin.py", line 6, in <module> ...
0
votes
1answer
52 views

Different national and international shipping rate in Satchmo?

I'm taking over a Satchmo site and need it to charge a different shipping rate for international vs local postage. Any idea what I need to do to enable this ? Regards S++
0
votes
1answer
67 views

Django Store with limited options

I want to have a pricing screen with only 4 options avaliable for the user to choose from. After this I need some integration to paypal to recieve the payments. Is it best to use satchmo for something ...
1
vote
2answers
186 views

Satchmo Template form.username Not Popping Up

registration/login.html edited {% load i18n %} <div id="Login"> {% if form.non_field_errors %} <p class="error"> {% for err in form.non_field_errors %}{{ err }} ...
0
votes
1answer
29 views

Do not allow product of different categories in a cart

Satchmo store has products of different categories. For some reason I need to process payments of products of different category using different merchant account. Since this needs to be done asap, the ...
0
votes
2answers
166 views

satchmo product variation stock

I am trying to set up a satchmo site, but I am stuck at the product variation and the item in stock for the specific variation I am attaching the link (THIS LINK), please see the size section where I ...
0
votes
1answer
153 views

Satchmo: list all active products

I'd like to list all active products (from all or a specific category) in a template. I've looked almost everywhere and I simply cannot find a way to do this. I want to display them in the footer of ...
0
votes
2answers
105 views

Satchmo unit test runs only in isolation

I am working on a Django project, using the Satchmo shopping cart software. I have to use fairly complex custom code for this project, thus would like to have all Django and Satchmo tests passing. ...
0
votes
2answers
197 views

Satchmo's Contact Form Dont send email

I am a newbie using satchmo shop for the first time. This is my first ever question with stack too. So far I have been able to manage the customization to a reasonably well except the 2 things that I ...
0
votes
2answers
185 views

Online store with support for store credit

I am looking into online stores to use internally at a company. They would like to be able to add credit to a users account as part of an incentive program. I have started looking at Online store ...
0
votes
1answer
320 views

Payment processing for webshop with python 2.7 in GAE?

I'm developing a small webshop that should have some payment options. My platform is Google App Engine and python 2.7. There is a project called satchmo that is django / python and I wonder if I can ...
3
votes
2answers
226 views

Django Satchmo No Images

I got the basic Satchmo store up and running with clonesatchmo, however, the images does not show up. The source shows: <a href="/product/neat-book/"><img src="" width="" height="" ...
1
vote
1answer
56 views

Modify the app a model belongs to in the Django admin index

I am making a Satchmo site and I want to add models that don't currently exist. These new models all appear under the app that they are defined in. This is fine for programmers, but I want the client ...
1
vote
2answers
380 views

Is Django bad for conveying business-logic? [closed]

I am almost 100% locked in to Django for the projects I have been planning. The final "myth" I'd like to "dispel" is that Django is "mediocre" at conveying business-logic. Direct quote by Peter ...
0
votes
0answers
62 views

Gift option in Satchmo Checkout

I have setup a nice store via satchmo. Now that the holiday season is coming up, I want to give customers the option to gift wrap their order. It needs to be an all-or-nothing type thing, where either ...
0
votes
2answers
385 views

Django+Satchmo using nginx+FastCGI after some time gives HTTP Error 502 Bad gateway

I installed new Satchmo store on Linux Debian 6 distributive. Standard Django development server works perfect, but in production mode with nginx + FastCGI after some time (or it's look like after ...
1
vote
1answer
81 views

Proper Way to Work with Git on Satchmo/Django Project

I've built a django/satchmo ecommerce site which is starting to get some traffic, and I am having a problem because I do not have a smart way to deal with database changes. When I develop the site on ...
0
votes
0answers
204 views

apache2/mod_wsgi/django production NoneType error for satchmo import

I'm trying (very hard) to deploy my Django app to apache2/mod_wsgi, however I'm coming across an error that only occurs in the production environment. I'd be very very grateful for any suggestions on ...

1 2 3