Reputation: 5701
I have a website developed in symfony (1.2.9). I want to add a wiki to the website, and have opted for mediawiki.
I want to integrate mediawiki with my website in a way such that:
I have spent a few hours trawling the web on how to do this, and have found nothing. Hopefully someone on here may have done this before, or atleast, can shed some light on how to do this.
Upvotes: 2
Views: 406
Reputation: 1742
You could extend the AuthPlugin by doing:
class myauth extends AuthPlugin {
...
}
Or as above: use OpenID logins for both.
Upvotes: 0
Reputation: 1772
I am looking for the same thing with Django. I suspect it will involve hacking the underlying tables.
User creation is NOT supported through the API:
http://www.mediawiki.org/wiki/API:Edit_-_Register_new_user
Upvotes: 0