Custom membership provide in Sitefinity - sitefinity

I need to develop custom membership provider in Sitefinity Project.
I have to shown my users (from my custom table not Sitefinity's inbuilt table) to Sitefinity Backend of the site.
How to do this?
Thanks in advance.

Have you taken a look at the Sitefinity documentation: http://www.sitefinity.com/documentation/documentationarticles/creating-a-custom-membership-provider
this has a complete tutorial on building a custom membership provider that uses external data to manage users.
I hope this is helpful!

Related

Shopify can we change and override core code?

We have got new work for e-commerce website which is built in Shopify framework.We have a custom requirement on this website.the client wants to change the functionality of search box section in the header.Since we have not more idea about Shopify framework but we have worked in Ruby on Rails (Shopify built in RoR language) language.So my question is can we override and edit Shopify core files?if not what is the solution to make custom work in Shopify?
As in my knowledge, Shopify is paid framework and his team is provide extension and plugin but can we edit and update in these plugins?
If anyone has an idea please share your thoughts so that we can proceed our work.
Many Thanks in advance.
You can not overwrite Shopify's Core framework. There is some customization that can be done through their script editor but it is only available for plus merchants.
https://help.shopify.com/manual/apps/apps-by-shopify/script-editor/shopify-scripts
What kind of functionality are they looking to change? Most likely you'll have to create an external application and use Shopify API's to do this or use a search app from the app store.
You can not overwrite Shopify's Code. There is some customization that can be done through their script editor.
highly restriction Admin Pages Like Dashboard, Product pages, order pages, etc...
Most likely you'll have to create an external application.

WSO2 Api Manager Application for several users

Here is my problem : I'm tring to create an application which could be seen from the store by different users. I create the application "app1" with "user1" and i want "user2" to "join" the application "app1".
So is it possible to relate some users to an existing application ? If it is, can anyone explain me please because i don't see how to do it.
Thanks
From API Manager 1.9.0 onwards there is a feature called application sharing. Your expectation can be achieved by that. Please refer this documentation.

Custom ASP.NET SqlMemberShip Provider for RavenDB

How to Customize ASP.NET SqlMemberShip Provider using RavenDB and MVC4.From where i can start??I have searced a lot about this.Please provide me with good turorials links.
Thanks in advance..
I think you can not customize SqlMembershipProvider, but you can create your own Membership that works with RavenDb.
There's a good example created by Martijn Boland, check http://blogs.taiga.nl/martijn/2010/11/25/raven-db-asp-net-membership-provider/
You can download the Membership source code, it works with an embedded database, I think you can change that if needed, and it has a sample web aplication. Here is the link for the download page
https://github.com/martijnboland/RavenDBMembership

Use MediaPicker outside Admin

Crosspost: https://orchard.codeplex.com/discussions/455072
I'm using Orchard 1.6.1
I know we can implement a mediapicker for editor templates of our custom modules/parts as detailed in this post: http://www.locked.nl/using-the-mediapicker-in-your-own-orchard-module
However, I'm wondering if we can use the media picker in the front-end for custom pages/forms with our own controllers. I want users to be able to upload images and such. Can we use the MediaPicker? Or do we have to implement one ourselves and use Media Services?
Any piece of advise or information would be highly appreciated. Thanks!
The media library picker is not designed to be used on the front-end. You will have to build your own.

Page Authentication in Silverlight 4 Navigation Application

I'm pretty much a newbie in programming C# and I've been looking for quite some time now.
I need help with page authentication in a Silverlight navigation application.
I have a SQL Database running and a WCF service that gets the credentials out of that database. When the user is logged in he needs to see a link in the upper right corner with his profile.
How can I do this without using any help from silverlight? Is this even possible? Can I write a class that says "this user is authenticated and can see the following pages" on my own?
This is a really urgent issue. So thanks in advance for anyone's help!
Firstly use AspNet Membership ,
Most of classes you need implemented yet.
This link shows you how to setup membershipt tables to your SQL Server DB.
http://weblogs.asp.net/sukumarraju/archive/2009/10/02/installing-asp-net-membership-services-database-in-sql-server-expreess.aspx
In membership struct you can register,delete, lock - unlock ,store user details operations,... and more easier.
Here is an article explains implementation of membership for you,
http://blogs.msdn.com/b/kylemc/archive/2010/05/10/using-asp-net-membership-in-silverlight.aspx