views:

16

answers:

1

How to implement automatic page creation on a subdomain when a new user registers on the site?

(Working in Python on the Plone CMS and Zope web app server)

+1  A: 

You should have a wildcard entry on your domain, i.e. *.example.com and use some of apache's rewrite magic to redirect this to the correct part of your site. This is already discussed elsewhere on StackOverflow

Ivo van der Wijk