Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
628 views

How to get unique users across multiple Django sites powered by the “sites” framework?

I am building a Django site framework which will power several independent sites, all using the same apps but with their own templates. I plan to accomplish this by using multiple settings-files and ...
5
votes
3answers
67 views

Separate Django sites with a common authetication/registration backend

I need split my current Django application into two sites. Site A will contain the public facing site which would contain all the static pages and the registration system. The other site — Site B ...
5
votes
2answers
2k views

How can I get the Django admin's “View on site” link to work?

I've been working with a Django app for a while, and the Django admin interface works great, except that the "View on site" link doesn't work. Whenever I try to use it, I get an OperationalError with ...
4
votes
1answer
216 views

Django - Multiple Sites Site Caching

I have a number of sites under one django application that I would like to implement site wide caching on. However it is proving to be a real hassle. what happens is that ...
3
votes
1answer
210 views

Multiple Django Sites, one server

I have multiple sites for the same client, on the same server, running django, e.g. fooplumbing.com and bazheating.org. These two sites would each have different django apps, that is the plumbing site ...
2
votes
1answer
106 views

Django Sites - Different urls.py for two sites

I maintain a Django webapp for a client of mine. We built it out in Django and for computer users, it's great. We now want to cater to mobile device users. On top of a template switch, we also need ...
2
votes
1answer
371 views

Safe to modify settings.SITE_ID from middleware in Django?

I have modified the multihost.py middleware I found at http://effbot.org/zone/django-multihost.htm to set the settings.SITE_ID dynamically, but have some concerns that I may have just left the ...
2
votes
3answers
394 views

How to locally test Django's Sites Framework

Django has the sites framework to support multiple web site hosting from a single Django installation. EDIT (below is an incorrect assumption of the system) I understand that middleware sets the ...
1
vote
1answer
49 views

Django incorrect import

I am developing a web app with django 1.2.4, but I am having a problem with the Site model. I try: from django.contrib.sites.models import Site ... if Site._meta.installed: ... I am getting the ...
1
vote
1answer
51 views

How do I make Django figure out which Site object to use based on “Host” header in the HTTP request?

Consider a Django app built to serve multiple sites with slightly differing content using the standard Django sitesframework. The traditional way to host this would be to configure multiple Site ...
1
vote
2answers
330 views

django cross-site reverse a url

I have a similar question than django cross-site reverse. But i think I can't apply the same solution. I'm creating an app that lets the users create their own site. After completing the signup form ...
1
vote
2answers
179 views

Automatically prompt to update default site domain name when running Django’s ./manage.py syncdb?

Regarding Django Sites module and manage.py syncdb The Auth module can prompt to ask for default superuser for the admin site, during .\manage.py syncdb. I would like to see similar things happen for ...
0
votes
1answer
21 views

django site framework: Which models should be associated with a site (foreign, manytomany)?

according to the docu this is pretty straight forward: class Article(models.Model): headline = models.CharField(max_length=200) # ... site = models.ForeignKey(Site) but what if i have ...
0
votes
2answers
17 views

Fetching Django-comments from all sites for a given object

I am sharing objects between different sites using the Django-sites framework. This works fine because I was able to define a many-to-many relationship within my models. However, while retrieving the ...
0
votes
1answer
54 views

Is the current Site accessible from a template?

I'm trying to simply get the current Site from within a template for parsing like so: <h3>{{ site.name }}</h3> Unfortunately, this isn't bringing anything up. Is there a way to get ...
0
votes
0answers
75 views

multiple settings files and mod_wsgi problems

Recently upgraded a django project to use the sites framework, i tackled this by setting up multiple VirtualHosts each Aliasing a different .wsgi script which each in turn set the ...
0
votes
1answer
35 views

Is there a way to add fields onto Django's Sites Framework?

I really like the idea of the sites framework for making an application functional across multiple web sites. Is there a way to add fields onto the Site object for the database, or should I just ...
0
votes
1answer
120 views

How can a person extend django.contrib.sites.admin so as to include a field from a model with a foreign key pointing at sites?

I am struggling to extend the django.contrib.sites.admin. I am having a difficult time finding how to add a field to the sites admin page due to the fact that django.contrib.sites knows nothing of my ...
0
votes
0answers
28 views

How to index only commented pages using Django-sitemaps

I have a model with about 40 000 instances. For each instance corresponds a page and an url. For the moments only few of those instances are commented and thus these pages are rather poor and should ...
0
votes
1answer
97 views

Is Django sites framework suitable for serving sites with a different logic and models structure?

I am working on a application, which was written by other people. It actively uses the sites framework to serve two different gaming sites. These sites run on the same code, on the same database: ...
0
votes
1answer
187 views

Use Django flatpages without sites

Is there any that I can have a catch all site with flatpage framework in Django? I have one site but you can get to it through a few DNS names that change constantly. I need to map these all to a ...
0
votes
1answer
174 views

One admin for multiple sites

I have two sites with different SITE_IDs, but I want to have only one admin interface for both sites. I have a model, which is just an extended FlatPage: # models.py class SFlatPage(FlatPage): ...
0
votes
1answer
69 views

django sites default

Many 'reusable apps' require django-sites. There is annoying field "publish on" in admin interface, which I can't exclude because it has no default parameter (so the entry will be published nowhere. I ...