Questions tagged [django-oscar]

Oscar is an e-commerce framework for Django designed for building domain-driven applications. It is structured so that the core business objects can be customised to suit the domain at hand. In this way, your application can accurately model its domain, making feature development and maintenance much easier

Oscar is an e-commerce framework for Django designed for building domain-driven sites. It is structured such that any part of the core functionality can be customised to suit the needs of your project. This allows a wide range of e-commerce requirements to be handled, from large-scale B2C sites to complex B2B sites rich in domain-specific business logic.

416 questions
0
votes
0 answers

Python 3.4, django 1.7 oscar configuration

I have installed oscar in django 1.7 on windows 8 and followed the official tutorials but after the installation when i use python django-admin.py startproject demoshop command it gives an error : (oscar) c:\Python34\Scripts>python django-admin.py…
H_alt
  • 139
  • 3
  • 15
0
votes
1 answer

Django, django oscar & Digital Ocean

I am using Digital Ocean servers to hosts my site. When I run the site with debug = True, it runs fine but when I set it to False, it gives internal server error. I have put my domain name and IP in list of allowed hosts. Any suggestions? Also, I…
toothie
  • 1,019
  • 4
  • 20
  • 47
0
votes
1 answer

Paypal loses session data

Am using django oscar paypal and django oscar-0.7, when i submit for payment page get redirected to paypal site. After continuing that step and redirecting back to my site, it shows basket is empty and all paypal session is lost. Am stuck up here.…
user2842009
0
votes
0 answers

UnicodeDecodeError in Django (oscar and fabric)

I am currently trying to use django-oscar package as a solution to practical ecommerce with Django. I started by it's docs but when trying to run the sandbox locally as indicated here, but when running $ make sandbox I get (after a long…
Marcos Valle
  • 77
  • 2
  • 11
0
votes
1 answer

Overriding the check_permissions management command in django-userena to fix permissions for django-oscar

I am trying to use django-userena with django-oscar. So far, it is working well, except for when I try to link a non-staff user to a fulfillment partner (linking to a staff user works fine). Here is the error I am getting: Traceback: File…
Shafique Jamal
  • 1,550
  • 3
  • 21
  • 45
0
votes
1 answer

Django-oscar installation as new project with oscar files on project directory

I would like to start a new Project in Django. I want to use some django-oscar apps from Github. Django-oscar already providing a [pip infall django-oscar] command to install it. But this time osacar files goes to site-package directory. I want…
Starling
  • 3
  • 1
  • 2
0
votes
1 answer

How to install package not in site-packages of virtualenv and put command in requirements.txt that will install this package from local dir?

I have some django packages like django-oscar. I need to install it with pip and then edit code & revise. I'm tried to install it through setup.py deploy and to make .egg-info. Then I understand that pip doesn't have feature to install packages…
Ilya Ilin
  • 2,283
  • 21
  • 27
0
votes
1 answer

Enforcing related model creation

I'd like to add multiple dealers support from the dashboard following the oscar's documentation: You’ll need to enforce creating of a StockRecord with every Product. When a Product is created, Stockrecord.partner gets set to…
Rod0n
  • 1,019
  • 2
  • 14
  • 33
0
votes
1 answer

Integrate AMERICAN EXPRESS payment source with django-oscar 0.6

I'm doing an e-commerce website which use django-oscar 0.6. I have to integrate AMERICAN EXPRESS payment source with this project. Is there any existing packages available already like django-oscar-paypal, or i have to build a new app from the…
sebastian
  • 1
  • 3
0
votes
0 answers

Django-oscar demo error Can't import profile model

I downloaded django-oscar and i tried to run demo in the application. When i try to run demo, iam getting the error as 'Can't import profile model'. Urls.py file in this demo as from apps.app import application from datacash.dashboard.app import…
CRS...
  • 95
  • 1
  • 7
0
votes
0 answers

Heroku failed to push some refs to "...."

I got this error when I did git push heroku master. I know I have to change some info about django_oscar in requirements.txt. But don't know what to change to. Please help Obtaining django-oscar from…
user2539745
  • 995
  • 2
  • 15
  • 24
0
votes
1 answer

django heroku media files 404 error with amazon s3

So i have followed this question How to set-up a Django project with django-storages and Amazon S3, but with different folders for static files and media files? in order to get my django app uploading media files to my amazon S3 bucket. I am using…
psychok7
  • 5,373
  • 9
  • 63
  • 101
0
votes
1 answer

ImportError: Could not import settings. No module named oscar. inslalling django-oscar on djangohosting.ch

Dont know how to get on with this project. Spent many hours looking for the answer. ImportError: Could not import settings 'myproject.settings' (Is it on sys.path?): No module named oscar I use djangohosting.ch Want to install django-oscar Im not…
user2717364
  • 1
  • 1
  • 2
0
votes
1 answer

How to enable faceted search in Django Oscar?

I am very new to Oscar, I have been trying to use the builtin support for faceted search for my Oscar project but I have no clue (can't find any documentation). I have : My elastic search running at port 9200 Haystack settings…
Yugal Jindle
  • 44,057
  • 43
  • 129
  • 197
-1
votes
1 answer

How do I fix this errors when running my tests

from django.conf import settings from django.utils.functional import cached_property from regulus_oscar.apps.catalogue.abstract_models import AbstractProduct class Product(AbstractProduct): def __str__(self): """ Appends the…
Fidelis Maina
  • 55
  • 1
  • 11
1 2 3
27
28