Questions tagged [satchmo]

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.

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.

The Satchmo Project's home page can be found at http://www.satchmoproject.com/.

127 questions
0
votes
1 answer

How can I fix my template loader to check for the root directory?

I have a directory structure like this if it matters (it's the default recommended structure as per satchmo documentation): site - apps | - __init__.py - config - projects | - site | - home | - templates …
Lunyx
  • 3,164
  • 6
  • 30
  • 46
0
votes
0 answers

How come I cannot run satchmo_check?

I'm stuck on step 1 of test and install the data here: http://www.satchmoproject.com/docs/dev/settings.html When I try to run the command, I get the following error: (pyweb27)user@mint ~/Documents/workspace/python/site $ python manage.py…
Lunyx
  • 3,164
  • 6
  • 30
  • 46
0
votes
1 answer

Insert a new field in a specific admin view?

I'm trying to extend default Django's model with a new field. In localsite/models.py I have the following code: from django.db import models from django.utils.translation import ugettext_lazy as _ from satchmo_store.contact.models import…
David Unric
  • 7,421
  • 1
  • 37
  • 65
0
votes
1 answer

Django's Satchmo and flatpages issue

I'm having a problem with configuring Flatpages in Satchmo. I've used them before, in a pure django app, but now it just doesn't work, returning 301 http error when I'm trying to enter a flatpage-configured site. What I've done to configure…
Marcin Cylke
  • 2,100
  • 2
  • 21
  • 40
0
votes
1 answer

Satchmo: What does this error mean and how is it fixed?

Ubuntu 13.04 - Python 2.7.4 - Django 1.4.5 - Satchmo_Store 0.9.3 When I run Satchmo's second installation test, it shows me the following two errors which appear to me to be the same error. Either way, I do not understand enough to know what it is…
0
votes
1 answer

Satchmo like project in Java

Is there a satchmo like project in Java? EDIT As for those trying to close the question, I did as requested and asked on server fault where it was not well received.
carrier
  • 32,209
  • 23
  • 76
  • 99
0
votes
2 answers

Installing satchmo without ssh access

I want to install satchmo in my virtual hosting, but they dont provide ssh access for it. I want to know if it is possible. As i can see, adding some Satchmo requirements(http://www.satchmoproject.com/docs/svn/requirements.html) to pythonpath in my…
Odif Yltsaeb
  • 5,575
  • 12
  • 49
  • 80
0
votes
2 answers

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:///admin, I get the following error: 'admin_static' is not a valid tag library: Template…
user996048
  • 123
  • 2
  • 13
0
votes
0 answers

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. For example if I have a new db, and I create a user…
handros
  • 597
  • 1
  • 5
  • 14
0
votes
1 answer

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 > product 1 cat 2 > subcat 2 > product 2 cat 3 >…
signal
  • 200
  • 1
  • 2
  • 10
0
votes
1 answer

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 do the same as described here. What can I do to…
Sandip Agarwal
  • 1,890
  • 5
  • 28
  • 42
0
votes
1 answer

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 to make subscriptions to be able to use certain…
Abed Hawa
  • 1,372
  • 7
  • 18
0
votes
1 answer

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 for a daemonized fastcgi process that is running…
Christos Hayward
  • 5,777
  • 17
  • 58
  • 113
0
votes
2 answers

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) except Order.DoesNotExist: …
evgeniuz
  • 2,599
  • 5
  • 30
  • 36
0
votes
1 answer

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, and then (in another new window) I create a new…
handros
  • 597
  • 1
  • 5
  • 14
1 2 3
8
9