I have 2 Umbraco Web sites(7.15.3) both of them use different data bases. They are going to be deployed on the same VM but under different installations.
Each site has complete different structure(nodes, compositions so on) but they have to be able to share the same members. How could I achieve that ?
I want my site X(1) which is primary to share its members to site Y(2). Because the registration of new members happens in X.
Considering the fact they reside in different dabases.
Synchronization is a nice idea but how could I achieve that ?
I am planning on creating my own UmbracoApiControllers or UmbracoSurfaceController and make my own code to make it possible. This way I will be able to keep both umbraco installations separate with 2 different databases. But sadly I am still not aware how to proceed further.
2 Umbraco sites sharing members
Hi there!
I am facing the following problem:
I have 2 Umbraco Web sites(7.15.3) both of them use different data bases. They are going to be deployed on the same VM but under different installations.
Each site has complete different structure(nodes, compositions so on) but they have to be able to share the same members. How could I achieve that ?
I want my site X(1) which is primary to share its members to site Y(2). Because the registration of new members happens in X.
Considering the fact they reside in different dabases.
In this case I see 2 possible solutions:
Synchronization is a nice idea but how could I achieve that ?
I am planning on creating my own UmbracoApiControllers or UmbracoSurfaceController and make my own code to make it possible. This way I will be able to keep both umbraco installations separate with 2 different databases. But sadly I am still not aware how to proceed further.
idea for sync - You can subsribe to Memeber saved event and send request to contoller on second site
For conclusion:
CustomMembership provider was created which feeds the new website members from the old one.
References:
I found those posts extremely helpful.
is working on a reply...