Sharon
Sharon

Reputation: 3919

Can I have a Wordpress site with a CakePHP subsite?

I'm hoping to build a website which needs to be done quickly. The website itself should be fairly basic, so I was going to just do that in Wordpress. However, it also needs functionality to allow people to register and then interact (none of this appears on the website, just a link to the user login bit). I think it's going to be easier to build that bit in CakePHP as it has some very specific functionality that I don't think I'd find a WP plugin for.

Is there a way that I can build my website.com in Wordpress and then have something like my website.com/userarea where user area is built in CakePHP?

Upvotes: 0

Views: 52

Answers (1)

symcbean
symcbean

Reputation: 48357

Yes it's possible, but requires a rather esoteric configuration of your webserver, and that's assuming you are proposing to implement the cakephp part with a front controller architecture. Even if you are a nginx/apache guru I'd recommend running the two components under different vhosts.

Upvotes: 1

Related Questions