So I'm just starting to play with CakePHP and was wondering if the following was possible:

A single install of Cake, with a super admin login. Then, admins that have access to specified "sub sites", and the ability to create/edit content and users on those sub sites. Finally, the ability to map domain names (not subdomains, but unique domains) to the routes; so instead of mysite.com/subsite/posts/1 it would just be newdomain.com/posts/1

Essentially, I'm looking to replicate the experience of using Wordpress Multi-user (with domain mapping).

Is this possible? If so, what should I be looking into?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Sure. You can even use the same set of code and just configure certain domains to point to the code. Then in the code base, tie a domain ID to each user and the content so it knows where it belongs. You can have admin users belong to all domains. Then when you add regular users, you can specify what domain they belong to.

You could establish the domain checking in the Config/bootstrap.php and then set the configuration for the domain like so:

Configure::write('domain_id', 'someDomainSpecificID');

Then you only have to maintain one set of code and one database from many domains.

If the domains have to be physically separate, you could set up one location for the ADMIN users (single database) and run everything against that.

There are many ways you could architect it, it just depends on what your specific needs are. It sounds like a cool project though.

link|improve this answer
Thanks for the response! For this project one code base makes sense since all the "sub sites" will be identical. Keeping it DRY and all that! – Benjamin Allison Feb 25 at 2:12
Then yeah, it should be simple to do. You can even setup the AppController so that it changes the Layout on the fly in the beforeRender(). $this->layout = 'site1'; etc. – Chuck Burgess Feb 25 at 2:22
Awesome! You're a pro star. Thanks! – Benjamin Allison Feb 25 at 2:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.